round
返回x的四舍五入的舍入值。
接口定义
C interface:
float roundf(float x);
double round(double x);
long double roundl(long double x);
参数
参数名 |
类型 |
描述 |
输入/输出 |
|---|---|---|---|
x |
|
表示输入数据的浮点值。 |
输入 |
返回值
- 返回x的舍入值,x ∈ (-inf, inf)。
- 输入+0,返回+0。
- 输入-0,返回-0。
- 输入±∞,返回±∞。
- 输入nan,返回nan。
依赖
C: "km.h"
示例
C interface:
// 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
* */
父主题: 舍入函数