Problem2045--2021南海区Python测试-填空题1

2045: 2021南海区Python测试-填空题1

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

1. 运行以下程序,从键盘输入圆的半径r,计算并输出这个圆的周长和面积,请完善程序。

pi=3.14

r=float(       ①       )

 =pi*r*2

s=pi*r**2

print(c)

       print(s)

Output

按顺序输出答案,一空一行。全对才得分
eg:
print(……)
print(……)

Source/Category