文档目录
在指定的数值范围内取得一个随机数
int getRandom(int a, int b);
下界值
上界值
a~b之间的一个随机数。包含a和b
int ran; ran = getRandom(1,9999);