割り切れることが分かっている実数同士の割り算を行い、結果を整数に変換する。
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.