Computer Studies

Complete the following QBASIC program:

CLS
PRINT "Enter two numbers"
INPUT ………..
……….. = A+B
……….. = A*B
PRINT "The sum of two numbers ="; S
PRINT "The product of two numbers ="; P
………..

QBASIC: Input Statement

52 Likes

Answer

CLS
PRINT "Enter two numbers"
INPUT A,B
S = A+B
P = A*B
PRINT "The sum of two numbers ="; S
PRINT "The product of two numbers ="; P
END

Answered By

29 Likes


Related Questions