此函数用于四舍五入给定值并转换为 long long 整数。
用法
假设一个数字是 'x'。语法是:
long long int llround(data_type x);
参数
x:可以是双精度或浮点数的值。
返回值
它返回 x 的舍入值。函数的返回类型是long long integer。
例子1
让我们看一个简单的例子。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
float x=50.8;
std::cout <<"The value of x is:" <<x<< std::endl;
std::cout << "The rounded value of x is:"<<llround(x) << std::endl;
return 0;
}
输出:
The value of x is:50.8 The rounded value of x is:51
相关用法
- C++ Math llrint()用法及代码示例
- C++ Math log2()用法及代码示例
- C++ Math log()用法及代码示例
- C++ Math log10()用法及代码示例
- C++ Math logb()用法及代码示例
- C++ Math less()用法及代码示例
- C++ Math lgamma()用法及代码示例
- C++ Math lround()用法及代码示例
- C++ Math log1p()用法及代码示例
- C++ Math lrint()用法及代码示例
- C++ Math scalbn()用法及代码示例
- C++ Math acosh()用法及代码示例
- C++ Math asinh()用法及代码示例
- C++ Math isgreater()用法及代码示例
- C++ Math fabs()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math nearbyint()用法及代码示例
- C++ Math tan()用法及代码示例
- C++ Math nextafter()用法及代码示例
- C++ Math fdim()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Math llround()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。