1. 运行以下程序,从键盘输入圆的半径r,计算并输出这个圆的周长和面积,请完善程序。
pi=3.14
r=float( ① )
② =pi*r*2
s=pi*r**2
print(c)
print(s)