C++ 中的llround() 函数对最接近参数的整数值进行四舍五入,中间情况从零四舍五入。
C++ 中的llround() 函数对最接近参数的整数值进行四舍五入,中间情况从零四舍五入。返回值的类型为 long long int. 它类似于 lround() 函数,但返回 long long int 而 lround 返回 long int.
llround() 原型 [从 C++ 11 标准开始]
long long int llround(double x); long long int llround(float x); long long int llround(long double x); long long int llround(T x); // For integral type
llround() 函数采用单个参数并返回 long long int. 该函数在 <cmath> 头文件中定义。
参数:
llround() 函数采用单个参数值进行舍入。
返回:
llround() 函数返回最接近 x 的整数值,中间情况从零四舍五入。返回值的类型为 long long int.
示例 1:llround() 如何在 C++ 中工作?
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
long long int result;
double x = 11.16;
result = llround(x);
cout << "llround(" << x << ") = " << result << endl;
x = 13.87;
result = llround(x);
cout << "llround(" << x << ") = " << result << endl;
x = 50.5;
result = llround(x);
cout << "llround(" << x << ") = " << result << endl;
x = -11.16;
result = llround(x);
cout << "llround(" << x << ") = " << result << endl;
x = -13.87;
result = llround(x);
cout << "llround(" << x << ") = " << result << endl;
x = -50.5;
result = llround(x);
cout << "llround(" << x << ") = " << result << endl;
return 0;
}
运行程序时,输出将是:
llround(11.16) = 11 llround(13.87) = 14 llround(50.5) = 51 llround(-11.16) = -11 llround(-13.87) = -14 llround(-50.5) = -51
示例 2:用于整数类型的 llround() 函数
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int x = 15;
long long int result;
result = llround(x);
cout << "llround(" << x << ") = " << result << endl;
return 0;
}
运行程序时,输出将是:
llround(15) = 15
对于整数值,应用 llround 函数返回与输入相同的值。所以在实践中它并不常用于整数值。
相关用法
- C++ llrint()用法及代码示例
- C++ lldiv()用法及代码示例
- C++ llabs()用法及代码示例
- C++ list assign()用法及代码示例
- C++ log2()用法及代码示例
- C++ list front()用法及代码示例
- C++ list::remove()、list::remove_if()用法及代码示例
- C++ lrint() and llrint()用法及代码示例
- C++ list back()用法及代码示例
- C++ list merge()用法及代码示例
- C++ ldiv()用法及代码示例
- C++ list remove()用法及代码示例
- C++ list push_back()用法及代码示例
- C++ list::begin()、list::end()用法及代码示例
- C++ list::operator=用法及代码示例
- C++ list erase()用法及代码示例
- C++ list::empty()、list::size()用法及代码示例
- C++ list resize()用法及代码示例
- C++ list pop_front()用法及代码示例
- C++ list empty()用法及代码示例
注:本文由纯净天空筛选整理自 C++ llround()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。