Computer Science, asked by Frannyng, 10 months ago

Write a QBASIC program to calculate SUM of any three numbers.

Answers

Answered by anindyaadhikari13
11

Answer:

CLS

INPUT "Enter the First Number: ";a

INPUT "Enter the Second Number: ";b

INPUT "Enter the Third Number: ";c

sum=a+b+c

PRINT "Sum is: "+sum

END

Explanation:

Hope this will help you...Please mark this answer as the brainliest and follow me.

Similar questions