Get Answers to all your Questions

header-bg qa

Write programme of q-basic of two number and print the greatest

Answers (1)

best_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

Posted by

Deependra Verma

View full answer