随机数 – getRandom

取得一个随机数。

定义

int getRandom(int a, int b);

参数

a:

下界值

b:

上界值

返回值

a~b之间的一个随机数。包含a和b

示例

int ran;
ran = getRandom(1,9999);