题解 | #圆的面积#
圆的面积
https://www.nowcoder.com/practice/a235f884c28e46c491e7ddc414b54d2b
import math
R=float(input())
s=math.pi*R*R
print('%.3f'%s)
圆的面积
https://www.nowcoder.com/practice/a235f884c28e46c491e7ddc414b54d2b
import math
R=float(input())
s=math.pi*R*R
print('%.3f'%s)
相关推荐