Write a program that calculates the volume of water needed to fill a rectangular swimming pool.
The program should prompt for:
Enter the length: Enter the width: Enter the depth: All values are entered as decimals (floats).
The volume of the pool is volume
The volume is calculated as: length × width × depth
Input:
10.0
5.0
2.0
Output:
The volume of the pool is 100.0