2. Write a program to find the Largest of two numbers entered in qbasic
Answers
Answered by
1
Answer:
Write a program that asks any two numbers and displays the greater one. CLS. INPUT "ENTER FIRST NUMBER";A.
Answered by
1
REM
CLS
INPUT “ENTER ANY TWO NUMBERS”; A, B
IF A > B THEN
PRINT A; “IS GREATER”
ELSE
PRINT B; “IS GREATER”
END IF
END
Similar questions
Math,
2 months ago
Math,
2 months ago
Computer Science,
5 months ago
Chemistry,
11 months ago
Physics,
11 months ago