跳转到内容

环/教程/获取输入

来自维基教科书,开放的书籍,开放的世界
<

获取输入

[编辑 | 编辑源代码]

我们可以使用以下方法从键盘获取输入

  • 给出命令
  • 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() 函数从标准输入获取一个字符

语法

	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() 函数从键盘获取输入

语法

	Input(nCount) ---> string

该函数将等待直到读取到至少 nCount 个字符

示例

	See "Enter message (30 characters) : " cMsg = input(30)
	See "Message : " + cMsg


华夏公益教科书