write a qbasic program to take input two numbers and print the result
Answers
Answered by
3
Answer:
Explanation:
PRINT "What is the first number"
INPUT NUMBER1
'
PRINT "What is the second number"
INPUT NUMBER2
'
LET SUM = NUMBER1 + NUMBER2
PRINT "The total is:", SUM
'
END
Similar questions