std::round, std::lround, std::llround
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cmath> 中定义
|
||
float round( float arg ); |
(C++11 起) | |
double round( double arg ); |
(C++11 起) | |
long double round( long double arg ); |
(C++11 起) | |
double round( Integral arg ); |
(C++11 起) | |
long lround( float arg ); |
(C++11 起) | |
long lround( double arg ); |
(C++11 起) | |
long lround( long double arg ); |
(C++11 起) | |
long lround( Integral arg ); |
(C++11 起) | |
long long llround( float arg ); |
(C++11 起) | |
long long llround( double arg ); |
(C++11 起) | |
long long llround( long double arg ); |
(C++11 起) | |
long long llround( Integral arg ); |
(C++11 起) | |
计算最接近的整数
arg
。从零中途情况下是圆形的号码 原文:
Computes nearest integer to
arg
. Number is rounded away from zero in halfway cases [编辑] 参数
arg | - | 浮点值
|
[编辑] 返回值
最接近的整数
arg
.[[Image:
返回值
|200x200px]]Argument
[编辑] 另请参阅
最接近的整数不大于给定值 原文: nearest integer not greater than the given value (函数) | |
最接近的整数不小于给定的值 原文: nearest integer not less than the given value (函数) | |
(C++11) |
最接近的整数的幅值比不大于给定值 原文: nearest integer not greater in magnitude than the given value (函数) |