0%

python—求圆的面积和周长

有趣的技术

代码如下:

1
2
3
4
5
6
import math
h=int(input('请输入圆的半径:'))
l=2*math.pi*h
s=math.pi*h*h
print('圆的周长:','%05.2f'%l)
print('圆的面积:','%05.2f'%s)

效果如下: