random 方法屬於 java.lang.Math 物件裡的方法,使用方法可參考官方手冊。
語法如下:
public static double random()
說明:
random 方法會傳回大於等於0至小於1之間的小數亂數值,資料型態為 double (雙倍精度浮點數)
範例:產生10個 0~99 的亂數
- class java_ex14_random {
- public static void main(String[] args) {
- double var1;
- for(int i=0 ; i<10 ;i++){
- var1=Math.random()*100; //將產生的亂數乘100倍
- System.out.println("第" + (i+1) + "個亂數 = " + (int)var1 );
- }
- }
- }
執行結果: