Best writers. Best papers. Let professionals take care of your academic papers

Order a similar paper and get 15% discount on your first order with us
Use the following coupon "FIRST15"
ORDER NOW

program

need help debugging this program

import java.util.Scanner;

import java.lang.Math;    // Note: Needed for math functions

Need assignment help for this question?

If you need assistance with writing your essay, we are ready to help you!

OUR PROCESS

Order

Payment

Writing

Delivery

Why Choose Us: Cost-efficiency, Plagiarism free, Money Back Guarantee, On-time Delivery, Total Сonfidentiality, 24/7 Support, 100% originality

public class PaintEstimator {

  public static void main(String[] args) {

     Scanner scnr = new Scanner(System.in);

     double wallHeight = 0.0;

     double wallWidth = 0.0;

     double wallArea = 0.0;

     double gallonsPaintNeeded = 0.0;

     int cansNeeded = 0;

     final double squareFeetPerGallons = 350.0;

     final double gallonsPerCan = 1.0;

     System.out.println(“Enter wall height (feet): “);

     wallHeight = scnr.nextDouble();

     // Prompt user to input wall’s width

     System.out.println(“Enter wall width (feet): “);

     wallHeight = scnr.nextDouble();

     // Calculate and output wall area

     wallArea = wallHeight * wallWidth;

     System.out.println(“Wall area: square feet”);

     // Calculate and output the amount of paint in gallons needed to paint the wall

     gallonsPaintNeeded = wallArea/squareFeetPerGallons;

     System.out.println(“Paint needed: ” + gallonsPaintNeeded + ” gallons”);

     // Calculate and output the number of 1 gallon cans needed to paint the wall, rounded up to nearest integer

     cansNeeded = gallonsPaintNeeded / gallonsPerCan / squareFeetPerGallons; //Hint: this line is missing two operations

     System.out.println(“Cans needed: ” + cansNeeded + ” can(s)”); 

“Order a similar paper and get 15% discount on your first order with us
Use the following coupon
“FIRST15”

Order Now