当前位置: C语言 -- 标准库 -- <math.h> -- nexttoward

nexttoward函数


概要:
#include <math.h>
double nexttoward(double x, long double y);

描述:

该函数确定沿参数y方向参数x之后的下一个double类型的可表示值。

该函数等价于nextafter函数,区别在于参数ylong double类型;并且如果参数x等于参数y,函数将返回转换为double类型的y。该函数结果由函数类型决定,第二个参数不会丢失范围或者精度。


参数:
double x

参数为一个double类型的浮点数。

long double y

参数为一个long double类型的浮点数。


返回值:

函数返回沿参数y方向参数x之后的下一个double类型的可表示值。


范例:
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
/*函数nexttoward范例*/

#include <float.h>
#include <math.h>
#include <stdio.h>

int main(void)
{
    double x = 3.00;
    long double y = 4.00L;

    printf("%.*f\n", (DBL_DECIMAL_DIG-1), nexttoward(x,y));

    return 0;
}

输出:

3.0000000000000004


相关内容:
nexttowardf 确定float类型的下一个可表示值的函数。
nexttowardl 确定long double类型的下一个可表示值的函数。