当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ nearbyint()用法及代码示例


nearbyint()函数在cmath头文件中定义。此函数使用当前的舍入方法将给定值舍入为附近的整数值。 fegetround描述了当前的舍入方法。

用法:

float nearbyint(float x);

or,
double nearbyint(double x);

or,
long double nearbyint(long double x);

参数:此函数接受包含浮点值的单个参数x。


返回值:它使用舍入方法将x的舍入值返回到附近的整数值。

以下示例程序旨在说明C++中的nearbyint()函数:

示例1:

// C++ program to demonstrate 
// example of nearbyint() function. 
  
#include <bits/stdc++.h> 
using namespace std; 
int main() 
{ 
    float x = 2.7; 
      
    cout << "Value of x = " << x << endl; 
    cout << "Round off value of x = " << nearbyint(x); 
      
    return 0; 
}
输出:
Value of x = 2.7
Round off value of x = 3

示例2:

// C++ program to demonstrate 
// example of nearbyint() function. 
  
#include <bits/stdc++.h> 
using namespace std; 
int main() 
{ 
    double x = 3.2; 
  
    cout << "Value of x = " << x << endl; 
    cout << "Round off value of x = " << nearbyint(x); 
  
    return 0; 
}
输出:
Value of x = 3.2
Round off value of x = 3


相关用法


注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 nearbyint() function in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。