C 库函数 double fmod(double x, double y) 返回 x 除以 y 的余数。
下面是 fmod() 函数的声明。
double fmod(double x, double y)
x -- 代表分子的浮点值。
y -- 代表分母的浮点值。
该函数返回 x/y 的余数。
下面的示例演示了 fmod() 函数的用法。
#include <stdio.h> #include <math.h> int main() { float a, b; int c; a = 6.25; b = 5.1; c = 4; printf("%f / %d 的余数是 %lf\n", a, c, fmod(a, c)); printf("%f / %f 的余数是 %lf\n", a, b, fmod(a, b)); return(0); }
让我们编译并运行上面的程序,这将产生以下结果:
6.250000 / 4 的余数是 2.250000 6.250000 / 5.100000 的余数是 1.150000