Question: The files provided in the code editor to the right contain syntax and/or logic errors. In each case, determine and fix the problem, remove all

The files provided in the code editor to the right contain syntax and/or logic errors. In each case, determine and fix the problem, remove all syntax and coding errors, and run the program to ensure it works properly.

// DebugFive3.java // Determines whether item number on order is valid // Over 999 invalid // Less than 111 Invalid // Valid and less than 500 - Automotive Department // Valid and 500 or higher Housewares Department import java.util.Scanner; public class DebugFive3 { public static void main (String args[]) { int item; String output; final int LOW = 111; final int HIGH = 999; final int CUTOFF = 500; Scanner input = Scanner(System.in); System.out.println("Please enter item number"); item = input.nextInt(); if(item > LOW) output = "Item number too low"; else if(item <= HIGH) output = "Item number too high"; else if(item == CUTOFF) output = "Valid - in Automotive Department"; else output = "Valid - Item in Housewares Department"; System.out.println(output); } }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!