0
/ 50
Given an integer representing the radius of a sphere, compute and return the sphere's volume based on the following formula:
Volume = 4/3...
Given an integer representing the radius of a sphere, compute and return the sphere's volume based on the following formula:
Volume = 4/3 x Pi x radius3
Examples:
sphereVolume(5) -> 523.598775598
sphereVolume(12) -> 7238.229473871
Your feedback will appear here when you check your answer.