the surface area of a right circular cone is given by πr(r+√h^2+r^2) Calculate the surface area by writing down the formula (using variables with appropriate names ) in python.
Answers
Answered by
3
Answer:
r = int(input("Enter radius:"))
h = int(input("Enter height:"))
pie = 3.14
A = pie*r*(r + (h**2+r**2)**1/2)
print("Surface Area:",A)
Similar questions