Board logo

標題: 亂數 (一) [打印本頁]

作者: tonyh    時間: 2016-4-29 21:22     標題: 亂數 (一)

本帖最後由 tonyh 於 2016-5-6 19:46 編輯

運用 random() 函式, 產生一範圍介於 0.00000 (趨近於0) ~ 0.99999 (趨近於1) 之隨機亂數.
用此語法產生的亂數, 其資料形態為 double.
  1. public class Ch30
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         double r;
  6.         r=Math.random();
  7.         System.out.println(r);
  8.     }
  9. }
複製代碼

作者: 李知易    時間: 2016-4-29 21:39

  1. public class Ch33
  2. {
  3.     public static void main(String args[])
  4.     {

  5.              System.out.println(Math.random());

  6.     }
  7. }
複製代碼

作者: 洪振庭    時間: 2016-4-29 22:12

  1. public class Ch33
  2. {
  3.     public static void main(String args[])
  4.     {

  5.              System.out.println(Math.random());

  6.     }
  7. }
複製代碼

作者: 沈子耕    時間: 2016-5-1 12:47

  1. public class Ch30{
  2.        public static void main(String args[]){
  3.               System.out.println(Math.random());
  4.        }
  5. }
複製代碼

作者: 梁和雋    時間: 2016-5-6 15:38

  1. public class Ch33{
  2.     public static void main(String args[])
  3.              System.out.print(Math.random());
  4. }
複製代碼

作者: 黃璽安    時間: 2016-5-6 18:49

  1. public class Ch33
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         System.out.println(Math.random());
  6.     }

  7. }
複製代碼

作者: 曾挺桂    時間: 2016-5-6 19:49

  1. public class Ch30
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         double x=Math.random();
  6.         System.out.println(x);
  7.     }
  8. }
複製代碼

作者: 陳思惟    時間: 2016-5-6 19:51

  1. public class Ch34
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         double x;
  6.         x=Math.random();
  7.         System.out.println(x);
  8.     }
  9. }
複製代碼

作者: 黃柏維    時間: 2016-5-6 19:53

  1. public class Ch30
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          System.out.println(Math.random());
  6.     }

  7. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2