Skip to content

INPUT

Category: Statement
Syntax: INPUT(variable_list)

Description

Prompts the user at the console to input integer values, which are subsequently stored in the listed variables.

See also

Example

10 INPUT(A)
20 INPUT(B, C)
30 PRINT(A, B, C)