Question: C++ format in notepad or codeblocks Write a function to calculate the volume of a sphere. Formula: volume - 4/3 times Pi times radius cubed
C++ format in notepad or codeblocks

Write a function to calculate the volume of a sphere. Formula: volume - 4/3 times Pi times radius cubed the argument passed to the function is the radius of the sphere. The function return type and argument type should be float. Write a program that prints the volume for radii from 0 to 4.0 units at increments of 0.2 units. sample Output: Radius: 0.000000 volume: 0.00000 Radius: 0.200000 volume: 0.0335103 Radius: 0.400000 volume: 0.268082 Radius: 0.600000 volume: 0.904778 Radius: 0.800000 volume: 2.14466 Radius: 1.000000 volume: 4.18879 ... etc. Ail Output should be in main (), not in the function
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
