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
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