当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ 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:值可以是浮点数或双精度数。

返回值

它返回 x 的舍入值。

例子1

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

#include <iostream>
#include<math.h>
#include <cfenv>
using namespace std;
int main()
{
    float x=9.9;
    std::cout << "Value of x is:" <<x<< std::endl;
    std::cout << "Rounding to nearest,value is:" <<rint(x)<< std::endl;
   fesetround(FE_UPWARD);
    std::cout << "Rounding to upward,value is:" <<rint(x)<< std::endl;
    fesetround(FE_DOWNWARD);
    std::cout << "Rounding to downward,value is:" <<rint(x)<< std::endl;
    return 0;
}

输出:

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





相关用法


注:本文由纯净天空筛选整理自 C++ Math rint()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。