Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

blur-text-image

Get Instant Access with AI-Powered 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

Elementary Statistics

Authors: Mario F. Triola

12th Edition

0321836960, 978-0321836960

Students also viewed these Programming questions

Question

Examine data collection in research using the questions provided.

Answered: 1 week ago