new Random().nextInt(1000);// 1000之內
int num = (int) (Math.random() * 1000); // 注意不要寫成(int)Math.random()*3,這個結果爲0,由於先執行了強制轉換