round函数
概要:
#include <math.h> double round(double x);
描述:
该函数将参数x舍入为浮点形式表示的最近整数值;如果参数x位于两个整数的正中间,将向远离0的方向舍入。
参数:
double x
参数为一个double类型的浮点数。
返回值:
函数返回浮点形式表示的舍入得到的整数值。
范例:
|
|
输出:
round(2.3) = 2.00
round(2.7) = 3.00
round(2.5) = 3.00
round(-2.5) = -3.00
相关内容:
roundf | 将float类型参数舍入为最近整数值的函数。 |
roundl | 将long double类型参数舍入为最近整数值的函数。 |