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 = 0,r的符号应和参数x的符号相同。此定义适用于所有实现。如果参数y为0,是发生域错误,还是返回0,将由实现定义。
参数:
double x
参数为一个double类型的浮点数。
double y
参数为一个double类型的浮点数。
返回值:
函数返回(x REM y)。
范例:
|
|
输出:
remainder(5.00,4.00) = 1.00
remainder(7.00,4.00) = -1.00
相关内容:
remainderf | float类型的计算余数函数。 |
remainderl | long double类型的计算余数函数。 |