返回x的四舍五入的舍入值。
C interface:
float roundf(float x);
double round(double x);
long double roundl(long double x);
参数名 |
类型 |
描述 |
输入/输出 |
---|---|---|---|
x |
|
表示输入数据的浮点值。 |
输入 |
C: "km.h"
// typical usage double x1 = 0.0, x2 = -0.0, x3 = 1.5, x4 = -2.5; // special handing double a = INFINITY, b = -INFINITY, c = NAN; // print result printf("round(0.0) = %.15f\n", round(x1)); printf("round(-0.0) = %.15f\n", round(x2)); printf("round(1.5) = %.15f\n", round(x3)); printf("round(-2.5) = %.15f\n", round(x4)); printf("round(INFINITY) = %.15f\n", round(a)); printf("round(-INFINITY) = %.15f\n", round(b)); printf("round(NAN) = %.15f\n", round(c)); /* * round(0.0) = 0.000000000000000 * round(-0.0) = -0.000000000000000 * round(1.5) = 2.000000000000000 * round(-2.5) = -3.000000000000000 * round(INFINITY) = inf * round(-INFINITY) = -inf * round(NAN) = nan * */