16.5k views
2 votes
11. Write a program that will input the diameter of a sphere and print out the value of four properties of the sphere given a diameter (d). Format your output to have two decimal places.

Properties of the sphere
a. Radius rd/2
b. Surface area = 4 x π X r²
c. Circumference = πT d
d. Volume = 4πT

User Stylock
by
7.9k points

1 Answer

0 votes

Final answer:

To write a program that calculates and prints out the properties of a sphere given its diameter, you can follow these steps.

Step-by-step explanation:

To write a program that calculates and prints out the properties of a sphere given its diameter, you can follow these steps:

  1. Take input for the diameter (d) from the user.
  2. Calculate the radius (r) by dividing the diameter by 2.
  3. Calculate the surface area using the formula: Surface area = 4 x π x r².
  4. Calculate the circumference using the formula: Circumference = π x d.
  5. Calculate the volume using the formula: Volume = 4/3 x π x r³.
  6. Print out the calculated values of the radius, surface area, circumference, and volume, rounding them to two decimal places.

For example, if the diameter is 10 units:

  • Radius (r) = 10/2 = 5 units
  • Surface area = 4 x 3.1416 x 5² ≈ 314.16 square units
  • Circumference = 3.1416 x 10 ≈ 31.42 units
  • Volume = 4/3 x 3.1416 x 5³ ≈ 523.60 cubic units

User MythThrazz
by
7.8k points