원통의 부피 공식 Volume of cylinder=πr²h 3.14 * (radius**2) * height 원통의 표면적 공식 Surface Area of a Cylinder = 2πr² + 2πrh 2*(3.14*(radius**2)) + 2*(3.14 * radius * height) class Cylinder: pi = 3.14 def __init__(self,height=1,radius=1): self.height = height self.radius = radius #부피 def volume(self): #round로 소수점 2자리까지 출력 return round(Cylinder.pi * (self.radius**2) * self.height, 2) #표면적 def surface_area(s..