Computer Science, asked by madan9066, 1 month ago

Write a Qbasic program to find the sum of two number

Answers

Answered by kevalchaudhary651
0

Answer:

hope you got answer

Explanation:

Here's your answer --

let the two numbers be 43 and 57.

so the program for adding these numbers in QBASIC is as follows -

CLS.

A = 43.

B = 57.

PRINT "The sum of" A "and" B "is" A + B.

END.

when you will execute this program, the result will be as follows -

Similar questions