在本文中,我们将讨论nearbyint()
C ++ STL中函数的工作,语法和示例。
nearbyint()
啊附近的int()函数是C ++ STL中的一个内置函数,该函数在<cmath>头文件中定义。nearbyint()
函数用于根据输入获取舍入整数值。
该函数对输入进行舍入以获得最接近的整数值,舍入方法由fegetround描述。
此函数接受float,double和long double类型的值作为参数。
double nearbyint(double num); float nearbyint(float num); long double nearbyint(long double num);
该函数接受以下参数-
num-要四舍五入的值。
此函数返回四舍五入值num。
nearbyint(2.13);
输出结果
2
nearbyint(3.4);
输出结果
3
#include <bits/stdc++.h> using namespace std; int main(){ float var = 3.4; cout<<"value of var is: " <<var<< endl; cout<<"value after round off is: "<<nearbyint(var); return 0; }
输出结果
value of var is: 3.4 value after round off is: 3
#include <bits/stdc++.h> using namespace std; int main(){ float var = 7.9; cout<<"value of var is: " <<var<< endl; cout<<"value after round off is: "<<nearbyint(var); return 0; }
输出结果
value of var is: 7.9 value after round off is: 8