Computer Science, asked by jasminlaskar277, 9 months ago

Write a program to find the greater of two numbers using if then else in q basic

Answers

Answered by MrKrishna0102
4

Answer:

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

Explanation:

googli bro

Similar questions