Problem2946--系统函数--round函数练习题

2946: 系统函数--round函数练习题

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

Description

给定三个浮点数,分别输出它们四舍五入后的值。
利用round函数解决问题

Input

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

Output

输出一行:包含三个浮点数四舍五入后的结果

Sample Input Copy

5.4 5.5 5.9

Sample Output Copy

5 6 6

HINT

round(double x)
对参数 x 进行四舍五入,
返回值为 double 类型