Question: ACTIVITY 2 . 8 . 1 : Write a program that reads width and height. 5 3 7 5 7 8 . 3 5 5
ACTIVITY
: Write a program that reads width and height.
In order to paint a wall that has a number of windows, we want to know its area. Each window has a size of by Write a program that reads the width and height of the wall and the number of windows, using the following prompts.
Wall width:
Wall height:
Number of windows:
Then print the area.
Import the Scanner class
import java.util.Scanner;
public class WallArea
public static void mainString args
Declare a scanner
Scanner in new Scanner
System.in;
Prompt for and read the width and height
and the number of windows
System.out.printWall width: ;
double width in nextDouble;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
