div
2 つの整数値の商と剰余を計算します。
div_t div(
int numer,
int denom
);
ldiv_t div(
long numer,
long denom
); /* C++ only */
lldiv_t div(
long long numer,
long long denom
); /* C++ only */
パラメーター
numer
分子。denom
分母。
戻り値
int 型の引数を使用して呼び出された div は、商と剰余で構成される div_t 型の構造を返します。 long 型の引数を持つオーバーロードの戻り値は ldiv_t です。 div_t および ldiv_t はともに STDLIB.H で定義されます。
解説
div 関数は numer を denom で割り、商と剰余を計算します。 div_t 構造体は商 intquot、剰余、intremが含まれます。 商の符号は、数学的な商の符号と同じです。 この絶対値が最も大きい整数であり、商の絶対値よりも小さくなります。 分母が 0 の場合、プログラムはエラー メッセージにより終了します。
long 型または long long 型の引数を使用するオーバーロードは、C++ コードにのみ使用できます。 戻り値の型 ldiv_t はメンバー longquot と longremが含まれ、戻り値の型 lldiv_t は div_tのメンバーと同じ意味を持つメンバー long long quot と long long remが含まれています。
必要条件
ルーチン |
必須ヘッダー |
---|---|
div |
<stdlib.h> |
互換性の詳細については、「互換性」を参照してください。
使用例
// crt_div.c
// arguments: 876 13
// This example takes two integers as command-line
// arguments and displays the results of the integer
// division. This program accepts two arguments on the
// command line following the program name, then calls
// div to divide the first argument by the second.
// Finally, it prints the structure members quot and rem.
//
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
int main( int argc, char *argv[] )
{
int x,y;
div_t div_result;
x = atoi( argv[1] );
y = atoi( argv[2] );
printf( "x is %d, y is %d\n", x, y );
div_result = div( x, y );
printf( "The quotient is %d, and the remainder is %d\n",
div_result.quot, div_result.rem );
}
同等の .NET Framework 関数
使用できません。標準 C 関数を呼び出すには、PInvoke を使用します。詳細については、「プラットフォーム呼び出しの例」を参照してください。