环/教程/获取输入
外观
< 环
我们可以使用以下方法从键盘获取输入
- 给出命令
- GetChar() 函数
- Input() 函数
语法
Give VariableName
示例
See "Enter the first number : " Give nNum1
See "Enter the second number : " Give nNum2
See "Sum : " + ( 0 + nNum1 + nNum2 )
输出
Enter the first number : 3
Enter the second number : 4
Sum : 7
我们可以使用 GetChar() 函数从标准输入获取一个字符
语法
GetChar() ---> Character
示例
While True
See "
Main Menu
(1) Say Hello
(2) Exit
"
Option = GetChar()
GetChar() GetChar() # End of line
# the previous two lines can be replaced with the next line
# Give Option
if Option = 1
see "Enter your name : " give cName
see "Hello " + cName
else
bye
ok
End
我们可以使用 Input() 函数从键盘获取输入
语法
Input(nCount) ---> string
该函数将等待直到读取到至少 nCount 个字符
示例
See "Enter message (30 characters) : " cMsg = input(30)
See "Message : " + cMsg