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
相關用法
- C++ log()用法及代碼示例
- C++ div()用法及代碼示例
- C++ fma()用法及代碼示例
- C++ real()用法及代碼示例
- C++ imag()用法及代碼示例
- C++ map key_comp()用法及代碼示例
- C++ valarray tan()用法及代碼示例
- C++ valarray pow()用法及代碼示例
- C++ regex_iterator()用法及代碼示例
- C++ valarray sin()用法及代碼示例
注:本文由純淨天空篩選整理自bansal_rtk_大神的英文原創作品 nearbyint() function in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。