當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。