write a program to find out the difference between any two numbers in qbasic.
Answers
Answered by
4
Answer:
Search Results
Featured snippet from the web
QBasic Programming
REM PROGRAM TO DISPLAY SUM, DIFFERENCE, PRODUCT AND AVERAGE OF TWO NUMBERS. CLS. ...
DECLARE SUB SUM (A, B) DECLARE SUB DIFF (A, B) ...
SUB SUM (A, B) S = A + B. ...
SUB AVERAGE (A, B) AV = (A + B) / 2. ...
DECLARE FUNCTION SUM (A, B) ...
FUNCTION SUM (A, B) ...
FUNCTION DIFF (A, B) ...
FUNCTION PROD (A, B)
Similar questions