codinasion-archive / codinasion-programme

An open source codebase for sharing programming solutions.
https://codinasion.vercel.app/programme
MIT License
62 stars 147 forks source link

Volume of a sphere #543

Closed harshraj8843 closed 2 years ago

harshraj8843 commented 2 years ago

Title of article

Write a Python program to compute the volume of the Sphere

Takes the length of radius Uses the formula to calculate the volume Return the value

Volume of a sphere = radius radius radius 4/3 π

Additional information

Example:

radius = 8

Volume of a sphere = 8^3 π 4/3 = 2144.66 (round to 2 decimal places)

Programme:

Radius : 8

Volume : 2144.66

Code of Conduct

aashish-khub commented 2 years ago

Could I claim this issue?