Computer Science, asked by naira1902, 9 months ago

write a program to accept a number and calculate the volume of a sphere​

Answers

Answered by shubham71488
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