div
优质
小牛编辑
122浏览
2023-12-01
描述 (Description)
C库函数div_t div(int numer, int denom)将div_t div(int numer, int denom) numer (numerator)除以denom (denominator) 。
声明 (Declaration)
以下是div()函数的声明。
div_t div(int numer, int denom)
参数 (Parameters)
numer - 这是分子。
denom - 这是分母。
返回值 (Return Value)
此函数返回中定义的结构中的值,该结构有两个成员。 对于div_t: int quot; int rem; int quot; int rem;
例子 (Example)
以下示例显示了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