std::ceil
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cmath> 中定义
|
||
float ceil( float arg ); |
||
double ceil( double arg ); |
||
long double ceil( long double arg ); |
||
double ceil( Integral arg ); |
(C++11 起) | |
计算最接近的整数不小于
arg
. 原文:
Computes nearest integer not less than
arg
. 目录 |
[编辑] 参数
arg | - | 浮点值
|
[编辑] 返回值
最接近的整数不小于
arg
[[Image:
返回值
|200x200px]]Argument
[编辑] 注释
如果参数是无穷大(正或负)或0(正或负),返回值是一样的说法.
原文:
If the argument is infinity (positive or negative) or zero (positive or negative), the return value is the same as the argument.
表示的最大浮点值是准确的整数,在所有标准的浮点格式,所以这个函数永远不会溢出.
原文:
The largest representable floating-point values are exact integers in all standard floating-point formats, so this function never overflows.
此功能,但不是必需的,以,提高FE_INEXACT“非整数参数的浮点异常.
原文:
This function may, but is not required to, raise FE_INEXACT floating-point exceptions for non-integer arguments.
[编辑] 示例
输出:
12.000000 13.000000 13.000000 13.000000 13.000000
[编辑] 另请参阅
最接近的整数不大于给定值 原文: nearest integer not greater than the given value (函数) | |
(C++11) |
最接近的整数的幅值比不大于给定值 原文: nearest integer not greater in magnitude than the given value (函数) |
(C++11) (C++11) (C++11) |
最接近的整数,四舍五入的距离零中途情况下 原文: nearest integer, rounding away from zero in halfway cases (函数) |
(C++11) (C++11) (C++11) |
最接近的整数 的结果是不同的异常,如果使用当前的舍入模式 原文: nearest integer using current rounding mode with exception if the result differs (函数) |
(C++11) |
最接近的整数,使用当前的舍入模式 原文: nearest integer using current rounding mode (函数) |