Computer Science, asked by banti31, 8 months ago

write a program in Q Basic to enter any two number and display their sum difference and product ​

Answers

Answered by debanshbiswal9531
3

Explanation:

CLS

LET A= 10

B= 5

C= A+B

D=A-B

E= A*B

PRINT C ,D&E

END

Similar questions