编写pathon程序,计算底面半径66,高为24.2的圆柱体的体积和表面积
时间: 2024-10-07 21:08:15 浏览: 36
ACM_OJ_程序设计基础课程资料.rar_ACM_C++_pathon
当然可以,Python中计算圆柱体体积和表面积的公式分别为:
- 体积 (V) = 圆周率 π * 半径^2 * 高度
- 表面积 (A) = 2 * 圆周率 π * 半径 * (高度 + 半径)
下面是一个简单的函数,用于计算给定半径和高的圆柱体的体积和表面积:
```python
import math
def cylinder_properties(radius, height):
# 计算体积
volume = math.pi * radius**2 * height
# 计算表面积
surface_area = 2 * math.pi * radius * (height + radius)
return volume, surface_area
# 给定的半径和高度
radius = 66
height = 24.2
volume, surface_area = cylinder_properties(radius, height)
print(f"圆柱体的体积是: {volume:.2f}")
print(f"圆柱体的表面积是: {surface_area:.2f}")
阅读全文