CS 115 Lab 2, Part D: Computing the volume of a cube
[Back to Lab 2] [Back to CS 115 schedule]
Background
In this part of the lab, we will extend our program from Part C
to compute the volume of a cube, given the length of the edge.
Recall that the volume of a cube with edge length e can be calculated as
V = e3.
Here is a sample of what your revised program will do. The user's input is
italicized and underlined.
Enter a numeric value: 10
The area of a square with side length 10.0 is 100.0.
The area of a circle with radius length 10.0 is 314.159265359.
The volume of a cube with edge length 10.0 is 1000.0.
Instructions
- Remember not to delete any of the existing code. Also, do not prompt the user to enter
another value.
- Just after the other calculations, add a line to the program to calculate the volume of a cube whose
edge length is length. Store the result of this calculation in a new variable with an
appropriate name.
- Add a line to the program to print the volume of the cube. Be sure the wording matches the sample output exactly.
- Run your program. Make sure it matches the example (with the exception that the floating point accuracy or the number of digits could be different because that may depend on the specific machine you are using):
Enter a numeric value: 10
The area of a square with side length 10.0 is 100.0.
The area of a circle with radius length 10.0 is 314.159265359.
The volume of a cube with edge length 10.0 is 1000.0.
- Run your program. Record the volumes of the cubes in Question 9 of your writeup.
- Continue to Part E.