CLS
INPUT " Enter any three number ";A,B,C
If A >B and B >C THEN
PRINT " The greatest num is ";A
ELSEIF B>A and B>C THEN
PRINT "The greatest num is ";B
ELSE
PRINT " The greatest num is "; C
END IF
END
INPUT " Enter any three number ";A,B,C
If A >B and B >C THEN
PRINT " The greatest num is ";A
ELSEIF B>A and B>C THEN
PRINT "The greatest num is ";B
ELSE
PRINT " The greatest num is "; C
END IF
END
Comments
Post a Comment