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

nexttowardl函数


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

描述:

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

该函数等价于nextafterl函数。


参数:
long double x

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

long double y

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


返回值:

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


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

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

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

    printf("%.*Lf\n", (LDBL_DECIMAL_DIG-1), nexttowardl(x,y));

    return 0;
}

输出:

3.00000000000000000022


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