Computer Science, asked by joshjaydeep917, 3 months ago

THE INPUT STATEMENT STORES OR ASSIGNS THE SAME DATA TO THE CORRESPONDING __________ USED WITH IT​

Answers

Answered by lalleimachungakham20
0

Answer:

http://www.truebasic.com/node/1033

Answered by dreamrob
0

Answer:

THE INPUT STATEMENT STORES OR ASSIGNS THE SAME DATA TO THE CORRESPONDING VARIABLE USED WITH IT​

INPUT command is used to take data from the user.

Syntax:

INPUT "Text that you want to display" ; variable.

Example:

INPUT "Enter a number : "; num

OR

INPUT "Text that you want to display" , variable.

Example:

INPUT "Enter your age : " , age

For string input:

INPUT "Please enter your name : " ; name$

Similar questions