Question
I want the solution in Netbeans Each of the following files in the Chapter05 folder of your downloadable student files has syntax and/or logic errors.
I want the solution in Netbeans
Each of the following files in the Chapter05 folder of your downloadable student files has syntax and/or logic errors. In each case, determine the problem and fix the program. After you correct the errors, save each file using the same filename preceded with Fix. For example, save DebugFive1.java as FixDebugFive1.java.
a) DebugFive1.java
b) DebugFive2.java
Files for both a) and b) are below
a) // DebugFive1 // Adds your lunch bill // Burger and hot dog are $2.59 // Grilled cheese and fish are $1.99 // Fries are 89 cents import javax.swing.*; public class DebugFive1 { public static void main(String args[]) throws Exception { final double HIGH_PRICE = 2.59; final double MED_PRICE = 1.99; final double LOW_PRICE = 0.89; String usersChoiceString; int usersChoice; double bill = 0.0; usersChoiceString = JOptionPane.showInputDialog(null, "Order please 1 - Burger 2 - Hotdog" + " 3 - Grilled cheese 4 - Fish sandwich"); usersChoice= Integer.parseInt(usersChoice); if(usersChoice == 1 && usersChoice == 2) bill = bill + LOW_PRICE; else bill = bill - MED_PRICE; usersChoiceString = JOptionPane.showInputDialog(null, "Fries with that? 1 - Yes 2 - No"); usersChoice = Integer.parse(usersChoiceString); if (usersChoice == 1); bill = bill + LOW_PRICE; JOptionPane.showMessageDialog(null,"Bill is " + bill); } }
b)
// DebugFive2.java // Decides if two numbers are evenly divisible import java.util.Scanner; public class DebugFive2 { public static void main(String args[]) { int num; int num2; Scanner input = new Scanner(System.in); System.out.print("Enter a number "); num = input.next(); System.out.print("Enter another number "); num2 = input.nextInt(); if((num / num2 = 0) && (num2 / num) = 0) System.out.println("One of these numbers is evenly divisible into the other"); else System.out.println(Neither of these numbers is evenly divisible into the other); }
}
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