Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

b) Write a class named WallPaint that has a WallDimension object as a field. The WallPaint class should also have a field for the cost

b) Write a class named WallPaint that has a WallDimension object as a field. The WallPaint class should also have a field for the cost of the wall per square metre. The WallPaint class should have a method that returns the total painting cost of the wall.image text in transcribed

The BinaPaint Company has asked you to write a program that calculates the price of painting for rectangular walls. To calculate the price, you multiply the area of the wall (length times width) by the price per square metre of wall. For example, the area of wall that is 15 metres long and 12 metres wide is 180 square metres. To paint that wall that costs RM20 per square metre would cost RM3,600.00 (15x12x20 = 3,600) You are required to apply three classes: WallDimension, WallPaint, and PaintCalculator. The PaintCalculator contains the main method that will apply WallDimension and Wallpaint classes. The following UML diagram shows possible class design and the relationships between the WallDimension class and WallPaint class. WallPaint size: WallDimension - paintCost: double +WallPaint (dim: WallDimension, cost: double) +get TotalCost(): double +toString(): String WallDimension - length: double width: double +WallPaint (dim: WallDimension, cost: double) +get TotalCost(): double +toString(): String FIGURE Q2

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Beginning C# 5.0 Databases

Authors: Vidya Vrat Agarwal

2nd Edition

1430242604, 978-1430242604

More Books

Students also viewed these Databases questions