Question: 2. Write a new C++ program called Lab5B that calculates the volume and surface area of a sphere. a. Ask the user for the radius
2. Write a new C++ program called Lab5B that calculates the volume and surface area of a sphere. a. Ask the user for the radius of the sphere and then calculate its volume and surface area. b. Make your variables have data type double. C. Add a constant named Pl and set it to 3.1415 d. Surface area formula is 4*pi*r? (use the pow function) e. Volume formula is 4.0/3*pier f. Format your output with 2 decimal places. Print out the information using the following format: Sphere Radius: radius Sphere Volume: volume Sphere Surface Area: surfaceArea (Your test results should be volume=4188.67 and surface area =1256.60 after running your program)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
