📅  最后修改于: 2020-10-18 12:01:27             🧑  作者: Mango
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”的值相等。
#include
#include
using namespace std;
int main()
{
float from=6.7;
float to=6.7;
cout<<"Values of from and to are:"<
输出:
Values of from and to are:6.7, 6.7
6.7
在上面的示例中,“ from”和“ to”的值相等。因此,该函数返回值’from’。
让我们看一个简单的示例,其中“ from”和“ to”是同一类型。
#include
#include
using namespace std;
int main()
{
double from=0.0;
double to=6.0;
cout<<"Values of from and to are:"<
输出:
Values of from and to are:0, 6
4.94066e-324
在上面的示例中,“从”和“到”具有相同的类型,但不相等。 nextafter()函数返回值,即4.94066e-324