------
## 最终结论
```python
import math

def volume_cylinder(radius, height):
    return math.pi * (radius ** 2) * height
```