I feel so dumb I can't figure this out.20 Debugging: Painting a wall (Java) Download the PaintEstimator.java file from Blackboard.

I need help badly with a java code question…I feel so dumb I can’t figure this out…2.20 Debugging: Painting a wall (Java)

Download the PaintEstimator.java file from Blackboard. This program has five (5) errors in it that require you to debug it. Watch the video on Using the Netbeans Debugger then use your IDE to debug and fix this program. As you find an error, be sure to document what you changed using in-code commenting. Upload the file here to be checked. Below is an explanation of how the program should work.


(1) Prompt the user to input a wall’s height and width. Calculate and output the wall’s area. (Submit for 2 points).

Enter wall height (feet): 12
Enter wall width (feet): 15
Wall area: 180.0 square feet


(2) Extend to also calculate and output the amount of paint in gallons needed to paint the wall. Assume a gallon of paint covers 350 square feet. Store this value using a const double variable. (Submit for 1 points, so 3 points total).

Enter wall height (feet): 12
Enter wall width (feet): 15
Wall area: 180.0 square feet
Paint needed: 0.5142857142857142 gallons


(3) Extend to also calculate and output the number of 1 gallon cans needed to paint the wall. Hint: Use a math function to round up to the nearest gallon. (Submit for 2 points, so 5 points total).

Enter wall height (feet): 12
Enter wall width (feet): 15
Wall area: 180.0 square feet
Paint needed: 0.5142857142857142 gallons
Cans needed: 1 can(s)

L Lab Submission 2.20.1:Debugging: Painting a wall (Java)

Instructions Deliverables PaintEstimator.java We will expect the above file(s) to be submitted Compile command javac PaintEstimator.java -Werror We will use this command to compile your code Submit your files below by dragging and dropping into the area or choosing a file on your hard drive. PaintEstimator.java Drag files to left, or choose file… SUBMIT FOR GRADING SUBMITTED: 09:33 PM ON 01/12/17 Total: 0/5 1. Compare output 0/2Input12 15Your output starts withException in thread “main” java.lang.NoClassDefFoundError: PaintEstimator (wrong name: paintestimator/PaintEstimator) at java.lang.ClassLoader.defineClass1(Expected output starts withEnter wall height (feet): Enter wall width (feet): Wall area: 180.0 square feet2. Compare output 0/1Input12 15Your output starts withException in thread “main” java.lang.NoClassDefFoundError: PaintEstimator (wrong name: paintestimator/PaintEstimator) at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.javExpected output starts withEnter wall height (feet): Enter wall width (feet): Wall area: 180.0 square feet Paint needed: 0.5142857142857142 gallons3. Compare output 0/1Input12 15Your outputException in thread “main” java.lang.NoClassDefFoundError: PaintEstimator (wrong name: paintestimator/PaintEstimator) at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:803) at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) at java.net.URLClassLoader.defineClass(URLClassLoader.java:442) at java.net.URLClassLoader.access$100(URLClassLoader.java:64) at java.net.URLClassLoader$1.run(URLClassLoader.java:354) at java.net.URLClassLoader$1.run(URLClassLoader.java:348) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:347) at java.lang.ClassLoader.loadClass(ClassLoader.java:425) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at sun.launcher.LauncherHelper.checkAndLoadMain(LauncherHelper.java:482)Expected outputEnter wall height (feet): Enter wall width (feet): Wall area: 180.0 square feet Paint needed: 0.5142857142857142 gallons Cans needed: 1 can(s)4. Compare output 0/1Input20 50Your outputException in thread “main” java.lang.NoClassDefFoundError: PaintEstimator (wrong name: paintestimator/PaintEstimator) at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:803) at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) at java.net.URLClassLoader.defineClass(URLClassLoader.java:442) at java.net.URLClassLoader.access$100(URLClassLoader.java:64) at java.net.URLClassLoader$1.run(URLClassLoader.java:354) at java.net.URLClassLoader$1.run(URLClassLoader.java:348) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:347) at java.lang.ClassLoader.loadClass(ClassLoader.java:425) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at sun.launcher.LauncherHelper.checkAndLoadMain(LauncherHelper.java:482)Expected output Enterwall height (feet): Enter wallwidth(feet):Wallarea:1000.0 squarefeetPaint needed: 2.857142857142857gallonsCans
 
"Looking for a Similar Assignment? Order now and Get 10% Discount! Use Code "Newclient"