Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

write the program in c++ Write two local classes named Pipe and Pool as described below. Then, write a main function that reads the flowSpeed

write the program in c++
image text in transcribed
image text in transcribed
Write two local classes named Pipe and Pool as described below. Then, write a main function that reads the flowSpeed and area of a pipe obiect (p) both as double values, main will also read the width, the height, and the length of a Pool object (gardenPool) all as double values rally, the inputPipe of garden Pool will be the p Pipe object. Finally, the program should calculate the time it takes the gardenPool to be complely filled with water and prints it to the screen as a double value. Pipe Class A private double field named "flowSpeed" representing the flow speed of the pipe A private double field named "area" representing the cross-section area (.e, kesit alan) of the pipe. A constructor that gets two double values and initializes the object. . An empty constructor A public function named calculateFlow Rate that does not get any parameter, multiplies the flowSpeed and area of the pipe, and returns it as a double value. Pool Class A private double field named "width" representing the width of the pool. A private double field named "height" representing the height of the pool. A private double field named "length representing the length of the pool A private Pipe field named "inputPipe' representing the pipe that provides water to this pool A constructor that gets three double values, a Pipe value and initializes the object A public function named calculateVolume that does not get any parameter, calculates the volume of the pool using the rectangular prism volume formula given below and returns it as a double value: Volume-height"width length TimeToFill that does not get any parameter, calculates the time it takes for the pool to be filled with A public function named calculateVolume that does not get any parameter, calculates the volume of the pool using the rectangular prism volume formula given below and returns it as a double value: Volume = height *width length A public function named calculateTimeToFill that does not get any parameter, calculates the time it takes for the pool to be filled with water from the pipe by dividing the volume of the pool by the flow rate of the pipe and returns it as a double value The main function will, 1. Instantiate one Pipe object called p and instantiate a Pool object called gardenPool as explained above. 2. Use the calculateTimeToFill method of the Pool class to print out the time it takes to fill the pool and print it out NOTE: flowSpeed and area will always be given as positive values. NOTE: All the functions MUST only do the tasks described above, nothing else NOTE: Both classes MUST be written as described. 15564 25 782 351512 4 Input Output 24 11.2

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

The Accidental Data Scientist

Authors: Amy Affelt

1st Edition

1573877077, 9781573877077

More Books

Students also viewed these Databases questions

Question

Write a Python program to check an input number is prime or not.

Answered: 1 week ago

Question

Write a program to check an input year is leap or not.

Answered: 1 week ago