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


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



描述

C庫函數div_t div(int numer, int denom)分裂numer (numerator)經過denom (denominator)

聲明

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

div_t div(int numer, int denom)

參數

  • numer- 這是分子。

  • denom- 這是分母。

返回值

此函數返回 <cstdlib> 中定義的結構中的值,該結構有兩個成員。對於 div_t:int quot;國際;

示例

下麵的例子展示了 div() 函數的用法。

#include <stdio.h>
#include <stdlib.h>

int main () {
   div_t output;

   output = div(27, 4);
   printf("Quotient part of (27/ 4) = %d\n", output.quot);
   printf("Remainder part of (27/4) = %d\n", output.rem);

   output = div(27, 3);
   printf("Quotient part of (27/ 3) = %d\n", output.quot);
   printf("Remainder part of (27/3) = %d\n", output.rem);

   return(0);
}

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

Quotient part of (27/ 4) = 6
Remainder part of (27/4) = 3
Quotient part of (27/ 3) = 9
Remainder part of (27/3) = 0

相關用法


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