该函数使用当前舍入方法将给定值舍入到附近的整数值。当前的舍入方法由fegetround 描述。
用法
假设一个数字是 'x'。语法是:
return_type nearbyint(data_type x);
注意:return_type 可以是 float、double 或 long double。
参数
x:值可以是浮点数或双精度数。
返回值
它使用舍入方法将 x 的舍入值返回到附近的整数值。
例子1
让我们看一个简单的例子。
#include <iostream>
#include<math.h>
#include <cfenv>
using namespace std;
int main()
{
float x=2.3;
std::cout << "Value of x is:" <<x<< std::endl;
cout<<"Rounding to nearby,value is:"<<nearbyint(x);
return 0;
}
输出:
Value of x is:2.3 Rounding to nearby,value is:2
相关用法
- C++ Math nextafter()用法及代码示例
- C++ Math nexttoward()用法及代码示例
- C++ Math scalbn()用法及代码示例
- C++ Math acosh()用法及代码示例
- C++ Math asinh()用法及代码示例
- C++ Math isgreater()用法及代码示例
- C++ Math fabs()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math log2()用法及代码示例
- C++ Math tan()用法及代码示例
- C++ Math log()用法及代码示例
- C++ Math fdim()用法及代码示例
- C++ Math isfinite()用法及代码示例
- C++ Math erfc()用法及代码示例
- C++ Math sinh()用法及代码示例
- C++ Math scalbln()用法及代码示例
- C++ Math cosh()用法及代码示例
- C++ Math fma()用法及代码示例
- C++ Math pow()用法及代码示例
- C++ Math atan()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Math nearbyint()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。