Q. Write a program to calculate the radius of a sphere whose area (4Ï€r2) is given.

 

Answer = 

 



area = int(input("Enter the area :-"))
radius = ( area / (4 * 3.14 ) ) **0.5
print("Radius =", radius)



1 Comments

You can help us by Clicking on ads. ^_^
Please do not send spam comment : )

Post a Comment

You can help us by Clicking on ads. ^_^
Please do not send spam comment : )

Previous Post Next Post