double MathMod(double value1, double value2)
The function returns the floating-point remainder of division of two numbers.
この関数は2つの数値を除算した浮動小数点数の剰余を返します。
The MathMod function calculates the floating-point remainder f of x / y such that x = i * y + f , where i is an integer, f has the same sign as x, and the absolute value of f is less than the absolute value of y.
MathMod 関数は、x / y の剰余 f を浮動小数点数で計算します。これは、x = i * y + f のように、i は整数で、f は x と同じ符号を持ち、f の絶対値は y の絶対値より少ない値となります。
Parameters:
パラメータ:
1 2 3 4 5 | <b>value1</b> - Dividend value. 割られる値 <b>value2</b> - Divisor value. 割る値 |
Sample:
サンプル:
1 2 3 4 | double x=-10.0,y=3.0,z; z=MathMod(x,y); Print("The remainder of ",x," / ",y," is ",z); //Output: The remainder of -10 / 3 is -1 |