Board logo

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

作者: tonyh    時間: 2019-7-13 16:08     標題: 亂數 (二)

運用 random() 函式搭配for迴圈,
產生20組範圍介於0.00000~0.99999之隨機亂數.
  1. public class Ch31
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         for(int i=1; i<=20; i++)
  6.             System.out.println(Math.random());
  7.     }
  8. }
複製代碼

作者: 章幼莛    時間: 2019-7-13 16:28

  1. public class Ch01 {

  2.         public static void main(String[] args) {
  3.                 for(int i=1;i<=20;i++)
  4.                         System.out.println(Math.random());
  5.         }

  6. }
複製代碼

作者: 陳柏霖    時間: 2019-7-13 16:29

  1. public class World {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub

  4.                 for(int i=0; i<20; i++)
  5.                         System.out.println(Math.random());
  6.         }

  7. }
複製代碼

作者: 黃安立    時間: 2019-7-13 16:29

  1. public class ch01 {

  2.         public static void main(String[] args) {
  3.                 for (int i = 1; i <= 20; i++)
  4.                         System.out.println(Math.random());
  5.         }

  6. }
複製代碼

作者: 陳智鈞    時間: 2019-7-13 16:29

  1. public class Ch01
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         for(int i=1;i<=20;i++)
  6.             System.out.println(Math.random());        
  7.     }
  8. }
複製代碼

作者: 蔡依宸    時間: 2019-7-13 16:32

  1. public class World {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub
  4.            for(int i=0;i<=20;i++)
  5.                    System.out.println(Math.random());
  6.         }

  7. }
複製代碼

作者: 蔡季庭    時間: 2019-7-13 16:37

  1. public class Ha {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub
  4.                 {
  5.               for(int i=1;i<=20;i++)
  6.                       system.out.print(Math.random());
  7.                 }
  8.         }

  9. }
複製代碼

作者: 戴安利    時間: 2019-7-20 15:32

  1. package haha;

  2. public class haha
  3. {
  4.     public static void main(String[] args)
  5.         {
  6.             for(int i=1; i<=20; i++)
  7.                     System.out.println(Math.random());
  8.         }
  9. }
複製代碼

作者: 戴唯陞    時間: 2019-7-20 15:34

  1. public class hahahahaha {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法

  4.                 for(int i=1; i<=20;i++)
  5.          System.out.println(Math.random());        }
  6. }
複製代碼

作者: 戴偉宸    時間: 2019-7-20 15:35

  1. public class hihi {

  2.         public static void main(String[] args) {
  3.                  for(int i=1; i<=20; i++)
  4.                     System.out.println(Math.random());
  5.     }


  6. }
複製代碼

作者: 洪子涵    時間: 2019-8-9 16:24

  1. public class Ch01 {

  2.         public static void main(String[] args) {
  3.                 double r;
  4.                 for(int i=1;i<=20;i++)
  5.                 {
  6.                         System.out.println(Math.random());
  7.                 }
  8.                
  9.         }
  10. }
複製代碼

作者: 洪藜芸    時間: 2019-8-9 16:25

  1. public class Ci {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub
  4.                 for(int i=1;i<=20;i++)
  5.                 {
  6.                         System.out.println(Math.random());
  7.                 }
  8.         }

  9. }
複製代碼





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