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


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


nexttoword() 函数表示特定方向上的下一个可表示值。 nextafter() 和 nexttoward() 这两个函数的工作方式相似,返回的值相同。唯一的区别在于它们的语法。

用法

float nexttoward(float from, long double to);
 double nexttoward(double from, long double to);
long double nexttoward(long double from, long double to);
double nexttoward(integral from, long double to);

参数

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

返回值

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

示例

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

#include <iostream>
#include<math.h>
using namespace std;

int main()
{
        long double from=0.0;
        double to= -1.0;
        cout<<"Values of from and to are:"<<from<<", "<<to<<'\n';
        cout<<nexttoward(from,to);
        return 0;
}

输出:

Values of from and to are:0, -1
-3.6452e-4951

在上面的例子中,'from' 和 'to' 是不同的类型。 nexttoward() 函数返回值,即 -3.6452e-4951。






相关用法


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