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

remainder函数


概要:
#include <math.h>
double remainder(double x, 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,将由实现定义。


参数:
double x

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

double y

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


返回值:

函数返回(x REM y)


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

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

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

    printf("remainder(%.2f,%.2f) = %.2f\n", y, x, remainder(y,x));
    printf("remainder(%.2f,%.2f) = %.2f\n", z, x, remainder(z,x));

    return 0;
}

输出:

remainder(5.00,4.00) = 1.00

remainder(7.00,4.00) = -1.00


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