Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write an expression that will cause the following code to print I am a teenager if the value of userAge is less than 20 1
Write an expression that will cause the following code to print "I am a teenager" if the value of userAge is less than 20 1 import java.util.scanner 3 public class AgeChecker 4 public static void main (String [] args) f int userAge; scanner scnr = new Scanner(System.in); userAge = scnr.nextInt(); // Program will be tested with values: 18, 19, 20, 21. 7 10 if (/ Your solution goes here ) System.out.println("I am an adult"); 12 13 else System.out.println("I am a teenager") 15 16 17 18
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started