Question: When writing the code it keeps failing? Any suggestions? Given integers userNum1 and userNum2, output userNum1 is less than 40. if userNum1 is less than
When writing the code it keeps failing? Any suggestions?
Given integers userNum1 and userNum2, output "userNum1 is less than 40." if userNum1 is less than 40. End with a newline.
Assign userNum2 with 5 if userNum2 is greater than or equal to 20. Otherwise, output "userNum2 is less than 20." End with a newline.
Ex: If the input is -15 -5, then the output is:
userNum1 is less than 40. userNum2 is less than 20. userNum2 is -5.
import java.util.Scanner;
public class NumberComparisons { public static void main (String[] args) { Scanner scnr = new Scanner(System.in); int userNum1; int userNum2; userNum1 = scnr.nextInt(); userNum2 = scnr.nextInt();
/* Your code goes here */
System.out.println("userNum2 is " + userNum2 + "."); } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
