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 inclusive. Otherwise, "Not currently a teenager" is output. Ex : If the input is then the output is:
Currently a teenager
Ex : If the input is then the output is:
Not currently a teenager
import java.util.Scanner;
public class AgeRanges
public static void mainString args
Scanner scnr new ScannerSystemin;
int ageInput;
ageInput scnrnextInt;
Modify the following line
if ageInput ageInput
System.out.printlnCurrently a teenager";
else
System.out.printlnNot currently a teenager";
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
