fmod() - C函式


C庫函式double fmod(double x, double y)返回x除以y的剩餘的值。 

宣告

以下是fmod() 函式的宣告。 

double fmod(double x, double y)

引數

  • x -- 這是除法分子IEX浮點值 i.e. x.

  • y -- 這是浮動點值除法分母iey

返回值

這個函式返回除以x / y的剩餘值。

例子

下面的例子顯示了 fmod()函式的用法。

#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);
}

讓我們編譯和執行上面的程式,這將產生以下結果:

Remainder of 9.200000 / 2 is 1.200000
Remainder of 9.200000 / 3.700000 is 1.800000