用Python怎么用類的方法計算圓柱的表面積和體積?
import mathclass cylinder(): def __init__(self,r,h): self._r=r self._h=h def volume(self): return math.pi*self._r*self._r*self._
h def area(self): return 2*math.pi*(self._r*self._r+self._r*self._h)r=float(input("請輸入圓柱的底面半徑")
)h=float(input("請輸入圓柱的高")
)c=cylinder(r,h)print("圓柱的表面積是:%.1f\n 圓柱的體積是:%.1f"%(c.area(),c.volume()))
上一篇我的世界更新不了怎么辦