该函数使用当前舍入模式对给定值进行舍入,并返回 long long int 类型的值。
用法
假设一个数字是 'x'。语法是:
long long int llrint(data_type x);
参数
x:要四舍五入的值。
返回值
它返回 'x' 的舍入值,该值的返回类型为 long long int。
例子1
让我们看一个圆角方向向上时的简单示例。
#include <iostream>
#include<math.h>
#include<cfenv>
using namespace std;
int main()
{
float x=5.3;
std::cout << "Value of x is:" << x<<std::endl;
fesetround(FE_UPWARD);
cout<<"Rounded value of x is:"<<llrint(x);
return 0;
}
输出:
Value of x is:5.3 Rounded value of x is:6
例子2
让我们看一个当舍入方向向下时的简单示例。
#include <iostream>
#include<math.h>
#include<cfenv>
using namespace std;
int main()
{
double x=7.9;
std::cout << "Value of x is:" << x<<std::endl;
fesetround(FE_DOWNWARD);
cout<<"Rounded value of x is:"<<llrint(x);
return 0;
}
输出:
Value of x is:7.9 Rounded value of x is:7
相关用法
- C++ Math llround()用法及代码示例
- 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 llrint()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。