Question
Carpet Calculator 6th Edition page 438-439 #3 Carpet Calculator The westfield carpet company has asked you to write an application that calculates the price of
Carpet Calculator 6th Edition
page 438-439 #3 Carpet Calculator
The westfield carpet company has asked you to write an application that calculates the price of carpeting for rectangular rooms. To calculate the price, you multiply the area of the floor(width times length) by the price per square foot of carpet. For example, the area of floor that is 12 feet long and 10 feet wide is 120 square feet. To cover that floor with carpet that costs $8 per square foot would cost $960 (12 x 10 x 8 = 960)
First, you should create a class named RoomDimension that has two Fields: one for the length of the room and one for the width. The RoomDimension class should have a method that returns the area of the room (the area of the room is the room's length multiplied by the room's width).
Next, you should create a RoomCarpet class that has a RoomDimension object as a field. It should also have a field for the cost of the carpet per square foot. The RoomCarpet class should have a method that returns the total cost of the carpet.
Once you have written these classes, use them in an application that asks the user to enter the dimensions of a room and the price per square foot of the desired carpeting. The application should display the total cost of the carpet.
This program must be written using this UML
This program must be written with a class and have three Java files that are named below.
RoomDimension.java RoomCarpet.java CarpetCalculatorApp.java
Ouput must match the output in the picture below
RoomCarpet - size : RoomDimension carpetCost : double + RoomCarpet(dim : RoomDimension, +getTotalCost) : double cost : double) + toString0 String RoomDimension - length : double width : double RoomDimension(len double, w : double) + getArea) : double + toString0 String
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started