import math
r = float(input(‘请输入半径;’))
c = 2math.pir
s =math.pi*r**2
if r > 0:
print(‘圆的周长:%.2f’%c)
print(‘圆的面积:%.2f’%s)
else:
print(‘不存在’)
计算圆的周长面积
最新推荐文章于 2024-11-17 19:39:42 发布
import math
r = float(input(‘请输入半径;’))
c = 2math.pir
s =math.pi*r**2
if r > 0:
print(‘圆的周长:%.2f’%c)
print(‘圆的面积:%.2f’%s)
else:
print(‘不存在’)