Problem1219--编程4

1219: 编程4

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

Description

输入圆的半径r,计算它的周长和面积并输出。

Input

1

Output

6.28 3. 14

Sample Input Copy

2

Sample Output Copy

12.56 12.56

HINT

r=float(input("请输入圆的半径:"))

________①______       # 计算圆的周长c,其中π用3.14表示

________②______       # 计算圆的面积s

________③______(c,s)  #输出圆的周长c和面积s

Source/Category