Computer Science, asked by sr5961, 2 months ago

Write a program in QBASIC for the following:
finding sum of two numbers

Answers

Answered by gautamkumargupta692
2

Answer:

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

Answered by ssubhalaxmitripathy
1

Answer:

this is the answer u want

Attachments:
Similar questions