Write a program to display the greatest among 3 number.
CLS
INPUT "Enter any 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
Subscribe to:
Post Comments (Atom)
Internet of Things (IoT)
IoT is the technology or platform that connects any device into network and helps human beings to make their work amazingly faster and eas...
-
IoT is the technology or platform that connects any device into network and helps human beings to make their work amazingly faster and eas...
-
Write a program to display the greatest among 3 number. CLS INPUT "Enter any number"; A,B,C IF A>B AND A>C THEN PRINT ...
No comments:
Post a Comment