Problem H: 根据半径求圆的面积和周长

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:25 Solved:18

Description

输入圆的半径r,求圆的面积和周长(圆周率记作pi=3.14159)

Input

输入一个实数(浮点数)r

Output

输出2行,每行一个数,结果保留3位小数。
第一行:圆的面积S
第二行:圆的周长C

Sample Input Copy

1.0

Sample Output Copy

3.142
6.283

HINT

圆的面积公式:S=pi*r*r
圆的周长公式:L = 2×pi*r
r:表示圆的半径
pi:圆周率

Source/Category