Question: Modify the given if statement so that Currently a teenager is output if ageInput is in the range 1 3 - 1 8 inclusive. Otherwise,

Modify the given if statement so that "Currently a teenager" is output if ageInput is in the range 13-18 inclusive. Otherwise, "Not currently a teenager" is output. Ex 1: If the input is 15, then the output is:
Currently a teenager
Ex 2: If the input is 2, then the output is:
Not currently a teenager
import java.util.Scanner;
public class AgeRanges {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
int ageInput;
ageInput = scnr.nextInt();
// Modify the following line
if ((ageInput >=13)||(ageInput <=18)){
System.out.println("Currently a teenager");
}
else {
System.out.println("Not currently a teenager");
}
}
}

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!