English, asked by Rajbeerkaur9781, 3 months ago

Write a QBASIC program to find the difference between the product and sum of two numbers.

Answers

Answered by arsalan18
5

Explanation:

CLS

INPUT "enter first number";A

INPUT "enter second number";B

P= A*B

S= A+B

D= P-S

PRINT "Difference=";D

END

Similar questions