nearbyint
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <math.h> 中定义
|
||
float nearbyintf( float arg ); |
||
double nearbyint( double arg ); |
||
long double nearbyintl( long double arg ); |
||
舍入浮点参数
arg
一个整数值,浮点格式,使用当前的舍入模式.原文:
Rounds the floating-point argument
arg
to an integer value in floating-point format, using the current rounding mode.目录 |
[编辑] 参数
arg | - | 浮点值
|
[编辑] 返回值
的整数结果四舍五入
arg
[编辑] 注释
唯一的区别nearbyint和rint的是,rint可以提高FE_INEXACT浮点异常,而nearbyint不会提高.
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
(C99) (C99) (C99) |
最接近的整数 的结果是不同的异常,如果使用当前的舍入模式 原文: nearest integer using current rounding mode with exception if the result differs (函数) |
(C99) (C99) (C99) |
最接近的整数,四舍五入的距离零中途情况下 原文: nearest integer, rounding away from zero in halfway cases (函数) |
(C99) (C99) |
获取或设置舍入的方向 (函数) |
C++ documentation for nearbyint
|