Zebra0.com

aliceGlossary for Alice Programming: user-input

Glossary for Alice Programming: user-input

Learn Alice in FREE step-by-step lessons.

double input: We ask the user for a double and the panda spins around that amount.
   Panda asks how much to turn
get boolean: We ask the user for a Boolean value.
   Martian asks if he is on Mars
get: We can ask the user for input using the get commands.
input boolean: We ask the user for a Boolean value.
   Martian asks if he is on Mars
input double: We ask the user for a double and the panda spins around that amount.
   Panda asks how much to turn
input integer: Use the function getIntegerFromUser to ask the user's age.
   Ask the user how old they are
input name from user: Use the function getStringFromUser to ask the user his name, then say hello using the name entered.
   Ask the users name and say hello
input string: Wolf asks "What's your favorite food?", then says that is his favorite too.
   Ask the users their favorite food
input: Alice allows you to ask the user questions and input the response into a variable.
integer input: Use the function getIntegerFromUser to ask the user's age.
   Ask the user how old they are
string input: Wolf asks "What's your favorite food?", then says that is his favorite too.
   Ask the users their favorite food
Full Glossary