Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

File Paint.java contains the partial program below, which when complete will cal

ID: 3636557 • Letter: F

Question

File Paint.java contains the partial program below, which when complete will calculate the amount of paint needed to paint the walls of a room of the given length and width. It assumes that the paint covers 300 square feet per gallon.

//************************************…
//File: Paint.java
//
//Purpose: Determine how much paint is needed to paint the walls
//of a room given its length, width, and height
//************************************…
import java.util.Scanner;

public class Paint
{
public static void main(String[] args)
{
final int COVERAGE = 300; //paint covers 300 sq ft/gal
//declare integers length, width, and height;
//declare double totalSqFt;
//declare double paintNeeded;
//declare and initialize Scanner object

//Prompt for and read in the length of the room

//Prompt for and read in the width of the room

//Prompt for and read in the height of the room

//Compute the total square feet to be painted--think
//about the dimensions of each wall

//Compute the amount of paint needed

//Print the length, width, and height of the room and the
//number of gallons of paint needed.
}
}


Save this file to your directory and do the following:
1. Fill in the missing statements (the comments tell you where to fill in) so that the program does what it is supposed to. Compile and run the program and correct any errors.

Explanation / Answer

program 1: /************************************… //File: Paint.java // //Purpose: Determine how much paint is needed to paint the walls //of a room given its length, width, and height //***********************************/ import java.util.Scanner; public class Paint { public static void main(String[] args) { final int COVERAGE = 300; //paint covers 300 sq ft/gal //declare integers length, width, and height; //declare double totalSqFt; //declare double paintNeeded; //declare and initialize Scanner object int length, width, height; double totalSqFt; double paintNeeded; Scanner in = new Scanner(System.in); //Prompt for and read in the length of the room System.out.print("Enter length: "); length = in.nextInt(); //Prompt for and read in the width of the room System.out.print("Enter width: "); width = in.nextInt(); //Prompt for and read in the height of the room System.out.print("Enter height: "); height = in.nextInt(); //Compute the total square feet to be painted--think //about the dimensions of each wall totalSqFt = 2*width*height + 2*length*height; //Compute the amount of paint needed paintNeeded = totalSqFt / COVERAGE; //Print the length, width, and height of the room and the //number of gallons of paint needed. System.out.println("Height= " + height + " Width= " + width + " Length=" + length + " Gallons of Paint Needed= " + paintNeeded) } }

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote