Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

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

image text in transcribed
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

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions