Normal Program
CLS
c = 1
h = 0
INPUT "How many number do you want to enter"; m
FOR i = 1 TO m
INPUT "Enter the number"; n
IF n > h THEN
h = n
END IF
NEXT i
PRINT "The greatest number is"; h
END
CLS
c = 1
h = 0
INPUT "How many number do you want to enter"; m
FOR i = 1 TO m
INPUT "Enter the number"; n
IF n > h THEN
h = n
END IF
NEXT i
PRINT "The greatest number is"; h
END