関数div2int マニュアル

(The documentation of function div2int)

Last Update: 2021/11/30


◆機能・用途(Purpose)

割り切れることが分かっている実数同士の割り算を行い、結果を整数に変換する。
Conduct a division operation and convert the result to an integer, for a pair of real numbers for which it is known in advance that one real number is a multiple of the other.


◆形式(Format)

#include <doublemath.h>
inline int div2int(const double a,const double b)


◆引数(Arguments)

a 割り算の分子。
The numerator of the division operation.
b 割り算の分母。
The denominator of the division operation.


◆戻り値(Return value)

a/bを整数化した値。
The value of a/b converted to an integer.


◆使用例(Example)

printf("%d\n",div2int(7.5,2.5));
printf("%d\n",div2int(8.0,2.5));

1つ目の例では「3」と表示される。 2つ目の例ではエラーメッセージが表示されてプログラムが終了する。
In the first example, the result is “3”. In the second example, the program finishes as an error.