Room_In
Time Limit: 1000 ms
Memory Limit: 65536 KiB
Problem Description
Write a Java program that declares two variables of integer data type to represent the length and width of a room in feet. And accepting appropriate values to the variables from the console window.You are required compute and display the floor space of the room in square feet to the console window. Do not display only a value as output but include explanatory text.
Input
Input two variables of integer data type to represent the length and width of a room in feet.
Output
Display the floor space of the room in square feet to the console window.
Sample Input
10 20 20 25
Sample Output
The room is 200 square feet The room is 500 square feet
Hint
Source
maxj