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 nextafter()用法及代码示例
- C++ Math nearbyint()用法及代码示例
- C++ Math scalbn()用法及代码示例
- C++ Math acosh()用法及代码示例
- C++ Math asinh()用法及代码示例
- C++ Math isgreater()用法及代码示例
- C++ Math fabs()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math log2()用法及代码示例
- C++ Math tan()用法及代码示例
- C++ Math log()用法及代码示例
- C++ Math fdim()用法及代码示例
- C++ Math isfinite()用法及代码示例
- C++ Math erfc()用法及代码示例
- C++ Math sinh()用法及代码示例
- C++ Math scalbln()用法及代码示例
- C++ Math cosh()用法及代码示例
- C++ Math fma()用法及代码示例
- C++ Math pow()用法及代码示例
- C++ Math atan()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Math nexttoward()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。