Java 版 (精华区)
public static int getRandom(int nMin,int nMax){
long lSeed = System.currentTimeMillis();
Random rd = new Random(lSeed);
int nValue = rd.nextInt(nMax);
while(nValue <nMin){
nValue = rd.nextInt(nMax);
}
return nValue;
}
取得一个在nMin-nMax之间的证书
Powered by KBS BBS 2.0 (http://dev.kcn.cn)
页面执行时间:9.961毫秒