当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。