python

r = float(input("输入圆的半径:"))
PI = 3.14
C = 2 * PI *r
S = PI * r ** 2
print(C)
print(S)

发表评论

您的电子邮箱地址不会被公开。 必填项已用 * 标注