Home » , » [Java 學習筆記] 如何在程式中產生亂數(使用 random 方法)

[Java 學習筆記] 如何在程式中產生亂數(使用 random 方法)

作者:軟體罐頭 | 發表日期:2019年1月18日 星期五

       在開發Java程式時,常常會用到亂數,這時就需要用到 random 方法,以下就用範例來學習如何使用,語法如下:

random 方法屬於 java.lang.Math 物件裡的方法,使用方法可參考官方手冊

語法如下:

                 public static double random() 

說明:

random 方法會傳回大於等於0小於1之間的小數亂數值,資料型態為 double (雙倍精度浮點數)


範例:產生10個 0~99 的亂數
  1. class java_ex14_random {
  2.     public static void main(String[] args)  {
  3.         double var1;
  4.         for(int i=i<10 ;i++){
  5.             var1=Math.random()*100//將產生的亂數乘100倍
  6.             System.out.println("第" + (i+1) + "個亂數 = " + (int)var1 );
  7.         }
  8.     }
  9. }

執行結果:



分享 :
 
Copyright © 2013. 軟體罐頭 - All Rights Reserved
Blogger | Creating Website | Johny Template | Mas Template 技術提供