Wednesday, October 2, 2019

Qbasic to print greatest among three numbers

CLS
INPUT "Enter any three number"; A, B, C
IF A>B AND A>C THEN
PRINT "The greatest number is"; A

ELSEIF B>A AND B>C THEN
PRINT "The greatest number is"; B

ELSE
PRINT "The greatest number is"; C
END IF
END

No comments:

Post a Comment

Digital Footprint

Computer technology is a technology that instead of building a physical machine for each application builds a logical or virtual machine. ...