remainder / remainderf / remainderl
|
浮動小数点数同士の剰余を計算します。
[指定形式]
#include <math.h>
double remainder(double d1, double d2);
float remainderf(float d1, float d2);
long double remainderl(long double d1, long double d2);
[引数]
d1, d2 剰余を求める値 ( d1 / d2 )
[戻り値]
d1とd2の剰余値
[備考]
remainder関数群の剰余計算はIEEE 60559の規定に沿っています。