C庫函數(shù)double fmod(double x, double y)返回x除以y的剩余的值。
以下是fmod() 函數(shù)的聲明。
double fmod(double x, double y)
x -- 這是除法分子IEX浮點(diǎn)值 i.e. x.
y -- 這是浮動(dòng)點(diǎn)值除法分母iey
這個(gè)函數(shù)返回除以x / y的剩余值。
下面的例子顯示了 fmod()函數(shù)的用法。
#include <stdio.h> #include <math.h> int main () { float a, b; int c; a = 9.2; b = 3.7; c = 2; printf("Remainder of %f / %d is %lf ", a, c, fmod(a,c)); printf("Remainder of %f / %f is %lf ", a, b, fmod(a,b)); return(0); }
讓我們編譯和運(yùn)行上面的程序,這將產(chǎn)生以下結(jié)果:
Remainder of 9.200000 / 2 is 1.200000 Remainder of 9.200000 / 3.700000 is 1.800000