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

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

C++ STL math.rint()

该函数使用当前舍入模式将给定值舍入为最接近的整数。当前的舍入模式由fesetround()确定。

例如:

rint(7.9) = 8;
if, fesetround(FE_DOWNWARD) then,
rint(7.9) = 7;

句法

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

return_type rint(data_type x);

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

参数

x:可以是float或double的值。

返回值

它返回x的舍入值。

例子1

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

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

输出:

Value of x is :9.9
Rounding to nearest,value is :10
Rounding to upward,value is :10
Rounding to downward,value is :9