📜  C++ STL-math.nearingint()函数

📅  最后修改于: 2020-10-18 13:58:58             🧑  作者: Mango

C++ STL math.nearingint()

该函数使用当前的舍入方法将给定值舍入为附近的整数值。 fegetround描述了当前的舍入方法。

句法

假设数字是“ x”。语法为:

return_type nearbyint(data_type x);

注意:return_type可以是float,double或long double。

参数

x:值可以是float或double。

返回值

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

例子1

让我们看一个简单的例子。

#include 
#include
#include 
using namespace std;
int main()
{
     float x=2.3;
    std::cout << "Value of x is:" <

输出:

Value of x is:2.3
Rounding to nearby,value is :2