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


C++ Math nextafter()用法及代码示例


nextafter() 函数表示特定方向上的下一个可表示值。

假设两个数字是 'from' 和 'to'。因此,nextafter() 函数在 'to' 的方向上查找 'from' 的下一个值。

用法

float nextafter( float from, float to);
double nextafter( double from, double to);
long double nextafter( long double from, long double to);
promoted nextafter( arithmetic from, arithmetic to);

注意:如果任何参数为 long double,则返回类型为 long double。如果不是,则返回类型为 double。

参数

( from, to):这些是浮点值。

返回值

  • 如果 'from' 等于 'to',则返回 'from' 的值。
  • 如果没有发生错误,则返回 'from' 的下一个可表示值。

例子1

让我们看一个简单的例子,当 'from' 和 'to' 的值相等时。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
     float from=6.7;
     float to=6.7;
     cout<<"Values of from and to are:"<<from<<", "<<to<<'\n';
     cout<<nextafter(from,to);
     return 0;
}

输出:

Values of from and to are:6.7, 6.7
6.7

在上例中,'from' 和 'to' 的值相等。因此,该函数返回 'from' 的值。

例子2

让我们看一个简单的例子,当 'from' 和 'to' 是相同类型时。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
      double from=0.0;
      double to=6.0;
      cout<<"Values of from and to are:"<<from<<", "<<to<<'\n';
      cout<<nextafter(from,to);
      return 0;
}

输出:

Values of from and to are:0, 6
4.94066e-324

在上面的例子中,'from' 和 'to' 是同类型但不相等。 nextafter() 函数返回值,即 4.94066e-324






相关用法


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