Random(int)

擬似乱数を発生させる。

int Random(
    int nMaxInteger
);

Parameters

nMaxInteger

乱数の上限値を指定する(最大65535)


Description

0から(nMaxInteger - 1)までの整数の乱数を発生させ返す(返り値はnMaxInteger未満になる)。


remarks

返り値の最大数は(nMaxInteger - 1)になる。



Version

1.28

Example

// 0、1、2、3のどれかの数値を返す。

nValue = Random(4);

// 1〜30の乱数を発生させる。

nValue = Random(30) + 1;

// -10〜10の乱数を発生させる。

nValue = Random(21) -10;    // 0が存在するため20ではなく21

See Also

functions: d10 | d100 | d12 | d2 | d20 | d3 | d4 | d6 | d8 | GetRandomDelay
categories: Math Functions


author: Tom Cassiotis, editor: Charles Feduke, additional contributor(s): John Harris, Mark Schuit, JP team: ngtaicho
Send comments on this topic.