Question: What prints when the following code is run and the user enters 1 5 ? int age; boolean ratedPG 1 3 = true; Scanner sc

What prints when the following code is run and the user enters 15?
int age;
boolean ratedPG13= true;
Scanner sc = new Scanner(System.in);
System.out.print("Enter your age: ");
age = sc.nextInt();
if (age >=13 && ratedPG13)
{
System.out.println("You can see the movie.");
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!