Answered step by step
Verified Expert Solution
Question
1 Approved Answer
CRAILE622 Basic if-else expression Reset Write an expression that will cause the following code to print I am a teenager if the value of userAge
CRAILE622 Basic if-else expression Reset 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 f 4 public static void main (String [ args) int userAge; Scanner scnr-new Scanner(System.in); userAge scnr.nextInt); / Program will be tested with values: 18, 19, 20, 21 if Your solution goes here 10 System.out.println("I am an adult") 12 13 14 15 else System.out.printin("I am a teenager") 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