PRINT "Enter age" INPUT AGE ' IF AGE > 16 THEN PRINT "adult rate" ELSE PRINT "child rate" END IF ' PRINT "done" END
The program works correctly. Here is how it works:
IF is tested: AGE > 1621 > 16 the condition is TRUE.END IF: "done" is printed.What does the program output if the user enters 16?