Question
Intro C++ question: The weight of water is 62.42796 pounds per cubic foot. Write a complete C++ program to input the length, width, anddepth of
Intro C++ question:
The weight of water is 62.42796 pounds per cubic foot.
Write a complete C++ program to input the length, width, anddepth of a pool in feet. Compute the volume (Volume is the lengthtimes the width times the depth) and multiply this by the weight ofa cubic foot of water.
Checkpoints: The weight of water must be declared as a pounddefined global constant; must prompt the user for each dimensionseparately; and, output must be one digit to the right of thedecimal point.
Write all necessary statements. Use no function other thanmain().. No arrays, no loops. (20 points)
Sample run:
Enter length (ft): 30.6
Enter width (ft): 15.2
Enter depth (ft): 8.0
Weight: 232291.9 pounds
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