隨機產生四位,任意位或者範圍數字方法

1、用Math包中方法實現 1.隨機產生四位數[1000,9999] num=(int)(Math.random()*9000)+1000; Math.random()方法是產生double型[0,1)的數據,[0,1)*9000=[1,9001),用int類型強轉後即是[0,8999], 於是能夠獲得1000~9999的四位隨機數。 **PS:解釋下double類型強轉int類型,會致使doub
相關文章
相關標籤/搜索