import java.io.*;
import java.util.Scanner;  // Import the Scanner class
/**
 * Calculates the volume of paint needed to paint a rectangular room. The user inputs the length, width and height
 * of the room and the program outputs the amount of paint needed. Assume 1 Litre of paint covers 25 square meters
 * Extension: Ask the user for how many windows are in the room and the L/W/H of them. Assume all windows are
 * the same size.
 * Challenge: Paint is sold in buckets with a various amount of volume. Have the program give a suggestion on how many of each bucket the user should buy to minimise the cost. 
 * Paints can come in 1,2,4, 10, 15 Litres (from bunnings)
 *
 * @author (your name)
 * @version (a version number or a date)
 */
public class PaintCalculator{
    
    public void main(){
        //You may want to 
        Scanner scan = new Scanner(System.in);
        System.out.println("Enter the length of the room");
        String input = scan.nextLine();
        Double roomlength = Double.parseDouble(input);
        //YOUR CODE HERE
    }
}
