//生成六位隨機(jī)數(shù)
System.out.println(Math.random()); //生成0-1的隨機(jī)數(shù)
System.out.println(Math.random()*1000000);
System.out.println((int)(Math.random()*1000000));//會(huì)出現(xiàn)4位數(shù)、5位數(shù)的情況杠娱,不對(duì)
換做
//只會(huì)出現(xiàn)6位隨機(jī)數(shù)她君,上面的情況不會(huì)再出現(xiàn)
System.out.println((int)((Math.random()9+1)100000) );