Computer Science, asked by dominatinggamer39, 2 months ago

Write QBasic programs for the following problems.

a) Accept two numbers from the user and display the larger one.​

Answers

Answered by BrainlyJimmy
0

Answer:

Hey mate here is your answer

Explanation:

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