《JAVA產生指定範圍的隨機數》
產生機制:
產生Min-Max之間的數字
實現原理:
Math.round(Math.random()*(Max-Min)+Min) dom
long Temp; //不能設定爲int,必須設定爲long
//產生1000到9999的隨機數
Temp=Math.round(Math.random()*8999+1000); .net
原文地址:http://blog.csdn.net/hawkxml/article/details/379302 xml