Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

using c++ Write two local classes named Pump and cylinder as described below. Then, write a main function that reads the flowSpeed and area of

using c++
image text in transcribed
image text in transcribed
Write two local classes named Pump and cylinder as described below. Then, write a main function that reads the flowSpeed and area of a Pump object (p) both as double values, main will also read the radius and height of a Cylinder object (fuelTank) both as double values. Finally, the inBuiltPump of fuelTank will be the p Pump object. Finally, the program should calculate the time it takes the fuelTank to be completely filled with fuel and prints it to the screen as a double value. Pump Class A private double field named "flowSpeed" representing the flow speed of the pump. A private double field named "area" representing the cross-section area (.e., kesit alan) of the pump A constructor that gets two double values and initializes the object. An empty constructor. A public function named calculate Flow Rate that does not get any parameter, multiplies the flowSpeed and area of the pump, and returns it as a double value. Cylinder Class A private double field named "radius" representing the radius of the cylinder. A private double field named "height" representing the height of the cylinder. A private Pump field named "inBuiltPump" representing the pump that provides fuel to this cylinder A constructor that gets two double values, a Pump value, and initializes the object. A public function named calculateVolume that does not get any parameter, calculates the volume of the cylinder using the cylinder volume formula given below and returns it as a double value: Volume = Pl*radius*radius*height A public function named calculateTimeToFill that does not get any parameter, calculates the time it takes for the cylinder to be filled with fuel from the pump by dividing the volume of the cylinder by the flow rate of the pump and returns it as a double value. The main function will, 1. Instantiate one Pump object called p and instantiate a Cylinder object called fuelTank as explained above. 2. Use the calculateTime To Fill method of the Cylinder class to print out the time it takes to fill the cylinder 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. NOTE: To calculate Pl, you MUST use the M_PI constant from the cmath library. 2578 351 12 Input 1564 123.15 2.51327 Output 90.4779

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

Objects And Databases International Symposium Sophia Antipolis France June 13 2000 Revised Papers Lncs 1944

Authors: Klaus R. Dittrich ,Giovanna Guerrini ,Isabella Merlo ,Marta Oliva ,M. Elena Rodriguez

2001st Edition

3540416641, 978-3540416647

More Books

Students also viewed these Databases questions

Question

LO1 Understand risk management and identify its components.

Answered: 1 week ago