Question: Write program that prompts the user for a double value representing a radius. You will use the radius to calculate: circleCircumference =2r circleArea =r 2

Write program that prompts the user for a double value representing a radius. You will use the radius to calculate:

  • circleCircumference=2r
  • circleArea=r
  • 2
  • sphereArea=4r
  • 2
  • sphereVolume=43r
  • 3

You must use as defined in the java.lang.Math class.

Your prompt to the user to enter the number of days must be:

Enter radius:

Your output must be of the format:

Circle Circumference =circleCircumference

Circle Area =circleArea

Sphere Area =sphereArea

Sphere Volume =sphereVolume

Please make sure to end each line of output with anewline.

Please note that your class should be namedCircleSphere.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!