int MathRand( )
The MathRand function returns a pseudorandom integer within the range of 0 to 32767. The MathSrand function must be used to seed the pseudorandom-number generator before calling MathRand.
MathRand 関数は、0 から 32767 の範囲内の擬似乱数の整数を返します。MathSrand 関数は、MathRand を呼び出す前に、疑似乱数生成のシード(種)として使用する必要があります。
Sample:
サンプル:
1 2 3 4 | MathSrand(TimeLocal()); // Display 10 numbers. for(int i=0;i<10;i++ ) Print("random value ", MathRand()); |