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

remainderl函数


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

描述:

该函数计算IEC 60559标准要求的余数(x REM y)

当参数y ≠ 0时,余数r = x REM y由数学表达式r = x - ny定义,与舍入模式无关,其中n是最接近表达式x/y值的整数;当|n - x/y| = 1/2时,n是偶数。如果r = 0r的符号应和参数x的符号相同。此定义适用于所有实现。如果参数y0,是发生域错误,还是返回0,将由实现定义。


参数:
long double x

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

long double y

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


返回值:

函数返回(x REM y)


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

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

int main(void)
{
    long double x = 4.0L;
    long double y = 5.0L;
    long double z = 7.0L;

    printf("remainderl(%.2Lf,%.2Lf) = %.2Lf\n", y, x, remainderl(y,x));
    printf("remainderl(%.2Lf,%.2Lf) = %.2Lf\n", z, x, remainderl(z,x));

    return 0;
}

输出:

remainderl(5.00,4.00) = 1.00

remainderl(7.00,4.00) = -1.00


相关内容:
remainder double类型的计算余数函数。
remainderf float类型的计算余数函数。