Question: Java CHALLENGE ACTIVITY 6.3.2: If-else statement: Fix errors. u Re type the code and fix any errors. The code should convert negative numbers to 0.
Java

CHALLENGE ACTIVITY 6.3.2: If-else statement: Fix errors. u Re type the code and fix any errors. The code should convert negative numbers to 0. if (userNum >= 0) System.out.println("Non-negative"); else System.out.println("Negative; converting to 0"); userNum = 0; System.out.format("Final: %d", userNum); System.out.println(""); 1 test passed 240962.2339890.qx3zqy7 1 import java.util.Scanner; 2 3 public class ConvertNegative { 4 public static void main (String [] args) { 5 int userNum = 0; 6 7 * Your solution goes here */ 8 9 return; 10 } 11 } All tests passed
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
