跳转到内容

C++ 编程/代码/标准 C 库/函数/div

来自维基教科书,开放的书籍,用于开放的世界
语法
#include <cstdlib>
div_t div( int numerator, int denominator );

函数 div() 返回操作 numerator / denominator 的商和余数。 div_t 结构在 cstdlib 中定义,至少有

int quot; // The quotient
int rem; // The remainder

例如,以下代码显示 x/y 的商和余数

div_t temp;
temp = div( x, y );
printf( "%d divided by %d yields %d with a remainder of %d\n",
  x, y, temp.quot, temp.rem );
相关主题
ldiv
华夏公益教科书