Board logo

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

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

產生20組範圍介於1~3之隨機亂數(整數).
  1. public class Ch32
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         for(int i=1; i<=20; i++)
  6.             System.out.println((int)(Math.random()*3+1));
  7.     }
  8. }
  9. /*
  10.   Math.random()             0.0000 ~ 0.999999
  11.   Math.random()*3           0.0000 ~ 2.999999
  12.   Math.random()*3+1         1.0000 ~ 3.999999
  13.   (int)(Math.random()*3+1)  1 ~ 3
  14. */
複製代碼

作者: 章幼莛    時間: 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((int)(Math.random()*3+1));
  5.         }

  6. }
複製代碼

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

  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((int)(Math.random()*3+1));
  7.     }
  8. }
複製代碼

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

  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((int)(Math.random()*3+1));        
  7.     }
  8. }
複製代碼

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

  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((int)(Math.random()*3+1));
  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()*3+1);
  7.                 }
  8.         }

  9. }
複製代碼

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

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

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

  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((int)(Math.random()*3+1));
  8.         }
  9. }
複製代碼

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

  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()*3+1);        }
  6. }
複製代碼

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

  1. public class hihi {

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


  6. }
複製代碼

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

  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((int)(Math.random()*3+1));
  7.                 }
  8.                
  9.         }
  10. }
複製代碼

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

  1. public class Ci {

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

  7. }
複製代碼





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