當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C語言 fmod()用法及代碼示例



描述

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

聲明

以下是 fmod() 函數的聲明。

double fmod(double x, double y)

參數

  • x- 這是帶有除法分子的浮點值,即 x。

  • y- 這是帶有除法分母的浮點值,即 y。

返回值

此函數返回除以 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\n", a, c, fmod(a,c));
   printf("Remainder of %f / %f is %lf\n", a, b, fmod(a,b));
   
   return(0);
}

讓我們編譯並運行上麵的程序,將產生以下結果 -

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

相關用法


注:本文由純淨天空篩選整理自 C library function - fmod()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。