Computer Science, asked by Harshanand20, 10 months ago

Write a program to find bigger and smaller of the two in Q basic​

Answers

Answered by kunwardurgesh3635
0

Answer:

CLS

INPUT "ENTER THE FIRST NUMBER"; A

INPUT "ENTER THE SECOND NUMBER"; B

IF A > B THEN

PRINT " A IS BIGGER AND B IS SMALLER "

ELSE

PRINT " B IS BIGGER AND A IS SMALLER "

END IF

END

Similar questions