write a program to accept a number and calculate the volume of a sphere
Answers
Answered by
0
Answer:
In python
num=int(input("Enter the number"))
Volume=(4/3)*(22/7)*num**3
print("Volume of sphere is",Volume)
Attachments:
Similar questions