std::round, std::lround, std::llround
来自cppreference.com
![]() |
该页由英文版维基使用谷歌翻译机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击此处。 |
定义于头文件 <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
。从零中途情况下是圆形的号码 [编辑] 参数
arg | - |
[编辑] 返回值
[编辑] 另请参阅
不大于给定值的最接近整数 (函数) | |
不小于给定值的最接近整数值 (函数) | |
(C++11) |
绝对值不大于给定值的最接近整数 (函数) |