Thursday, 3 October 2019

QBasic programming to display the greatest among 3 numbers

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


No comments:

Post a Comment

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...