Computer Science, asked by Anonymous, 10 months ago

PYTHON:

WAP to find the surface area of a cylinder.

♥️♥️​

Answers

Answered by Anonymous
16

\huge\star\underline\mathfrak\red{Answer:-}

r = float(input("Enter radius"))

h= float(input("Enter height"))

SA= 2*3.14*r*(r+h)

print("Surface Area of a cylinder=", SA)

Answered by 16shots
10

\huge\star\underline\mathfrak\red{Answer:-}

r= float (input("Enter radius"))

h = float(input("Enter height"))

Surface Area = 2*3.14*r*(r+h)

print("Surface Area of Cylinder ", Surface Area)

Similar questions