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 objed (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. Finally, the inputPipe of gardenPool will be the p Pipe object. Finally, the program should calculate the time it takes the gardenPool to be completely filled will 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 (ie, kesit alan) of the pipe. * A constructor that gets two double values and initializes the object. An emply constructor. • A public function named calculateFlowRate 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 • 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. Input Output 15564 24 25782 112 351512

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

quick and fast plz

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 object
(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. Finally, the
inputPipe of gardenPool will be the p Pipe object. Finally, the program should calculate the time it takes the gardenPool to be completely 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 (i.e, kesit alan) of the pipe.
•
A constructor that gets two double values and initializes the object.
An emply constructor.
•
A public function named calculateFlowRate 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 construct 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
• 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.
Input
Output
15564
24
25782
11.2
351512
4
Transcribed Image Text: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 object (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. Finally, the inputPipe of gardenPool will be the p Pipe object. Finally, the program should calculate the time it takes the gardenPool to be completely 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 (i.e, kesit alan) of the pipe. • A constructor that gets two double values and initializes the object. An emply constructor. • A public function named calculateFlowRate 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 construct 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 • 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. Input Output 15564 24 25782 11.2 351512 4
Expert Solution
steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education