位置:首頁 > 高級語言 > C語言標準庫 > fmod() - C函數

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