Problem2947--系统函数--sqrt函数练习题

2947: 系统函数--sqrt函数练习题

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

Description

给定2个浮点数,分别输出它们的算术平方根。
利用sqrt函数解决问题

Input

输入一行:包含2个浮点数

Output

输出二行,对应相应的算术平方根(保留3位小数)

Sample Input Copy

16 25

Sample Output Copy

4.000
5.000

HINT

sqrt(double x);//
参数 x 的算术平方根
返回值为 double 类型

Source/Category