Computer Science, asked by emmirajesh826, 1 month ago

write an output statement for an input statement of name and age in qbasic​

Answers

Answered by BrainlyProgrammer
2

Answer:

CLS

INPUT "ENTER NAME:";N$

INPUT "ENTER AGE";AGE

PRINT "YOUR NAME IS ";N$

PRINT "YOUR AGE IS ";AGE

END

Explanation:

'$' symbol denotes that a variable can store and not any number.

Similar questions