Question: Declare method sphereVolume to calculate and return the volume of the sphere. Use the following statement to calculate the volume: double volume = (4.0 /
Declare method sphereVolume to calculate and return the volume of the sphere. Use the following statement to calculate the volume:
double volume = (4.0 / 3.0) * Math.PI * Math.pow(radius, 3)
Write a Java application that prompts the user for the double radius of a sphere, calls sphereVolume to calculate the volume and displays the result.
Step by Step Solution
3.46 Rating (166 Votes )
There are 3 Steps involved in it
The following solution calculates the volume of a spher... View full answer
Get step-by-step solutions from verified subject matter experts
