//*************************************************************** //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 = 350; //paint covers 350 sq ft/gal // declare integers length, width, and height VARIABLES; // declare integer totalSqFt variable; // declare double paintNeeded variable; // 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 // Assume 4 walls // totalSqFt = ??? // Compute the amount of paint needed // Print the length, width, and height of the room and the // number of gallons of paint needed. } }