std::floor
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cmath> 中定义
|
||
float floor( float arg ); |
||
double floor( double arg ); |
||
long double floor( long double arg ); |
||
double floor( Integral arg ); |
(C++11 起) | |
计算最接近的整数不大于
arg
. 原文:
Computes nearest integer not greater than
arg
. 目录 |
[编辑] 参数
arg | - | 浮点值
|
[编辑] 返回值
最接近的整数不大于
arg
[[Image:
返回值
|200x200px]]Argument
[编辑] 注释
整数值可以始终代表给定的浮点类型.
原文:
The integer value can be always represented by the given floating point type.
[编辑] 示例
输出:
12.000000 12.000000 12.000000 12.000000 13.000000
[编辑] 另请参阅
最接近的整数不小于给定的值 原文: nearest integer not less 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 (函数) |