/* Name: Lukas Nikolau * Weekly Program 2 * CS 201 */import java.util.Scanner;public class Weekly_Program_02 { public static void main(String[] args) { Scanner stdIn = new Scanner(System.in); int length; int width; int height; System.out.print("Please enter the room's length : "); length = stdIn.nextInt(); System.out.print("Please enter the room's width : "); width = stdIn.nextInt(); System.out.print("Please enter the room's height : "); height = stdIn.nextInt(); System.out.print('\r' + "Given a length of " + (double)length + " meters" + '\r' + "a width of " + (double)width + " meters" + '\r' + "and a height of " + (double)height + " meters" + '\r'); System.out.print('\r' + "The walls of the defined room have a surface " + '\r' + "area of : " + (double)(length*width*height) + " meters squared."); }}