if ( age < 17 )
Here is the program
with the blank filled in correctly:
import java.util.Scanner; class BoxOffice { public static void main (String[] args) { Scanner scan = new Scanner( System.in ); int age; System.out.println("Enter your age:"); age = scan.nextInt(); if ( age < 17 ) { System.out.println("Child rate."); } else { System.out.println("Adult rate."); } System.out.println("Enjoy the show."); } } |
Here is what happens for one run of the program:
|
What does the program output if the user enters 16?