Board logo

標題: [隨堂測驗] 亂數 (五) [打印本頁]

作者: may    時間: 2023-1-6 19:42     標題: [隨堂測驗] 亂數 (五)

產生30組範圍介於123~132之隨機亂數.
作者: 洪浚恩    時間: 2023-1-6 20:20

本帖最後由 洪浚恩 於 2023-1-6 20:55 編輯
  1. public class Ch01
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          int q;
  6.          int i=0;
  7.          while(i<=30)
  8.          {
  9.              q=(int)(Math.random()*10+123);
  10.              System.out.println(q);
  11.                 i++
  12.          }
  13.     }
  14. }
複製代碼

作者: 吳侑諶    時間: 2023-1-6 20:21

本帖最後由 吳侑諶 於 2023-1-6 20:29 編輯
  1. package ch01;

  2. public class ch01 {

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

  12. }
複製代碼

作者: 郭又瑄    時間: 2023-1-6 20:21

  1. package ch01;

  2. public class ch01 {

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

  12. }
複製代碼

作者: 吳溦珊    時間: 2023-1-6 20:21

  1. public class Ch01 {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub
  4.                 for(int i=1;i<=30;i++){
  5.                         int r;
  6.                         r=(int)(Math.random()*10+123);
  7.                         System.out.println(r);
  8.                 }       
  9.         }
  10. }
複製代碼

作者: 陳柏融    時間: 2023-1-6 20:21

  1. package ch01;

  2. public class ch01 {

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

  10. }
複製代碼

作者: 尤爾帆    時間: 2023-1-6 20:22

  1. package ch01;

  2. public class ch01 {

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

  11. }
複製代碼

作者: 賴聿均    時間: 2023-1-6 20:23

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

作者: 尤爾璿    時間: 2023-1-6 20:24

本帖最後由 尤爾璿 於 2023-1-6 20:56 編輯
  1. public class Ch01 {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub
  4.                 double r;
  5.                 while( i<=30)
  6.                 for(int i=1;i<=30;i++){
  7.                         r=(Math.random()*10+123);
  8.                         System.out.println(r);
  9.                 }
  10.         }
  11. }   
複製代碼

作者: 吳侑諶    時間: 2023-1-6 20:52

  1. package ch01;

  2. public class ch01 {

  3.         public static void main(String[] args) {
  4.                 // TODO 自動產生的方法
  5.                 int i=0;
  6.                 while(i<=30)
  7.                 {
  8.                         System.out.println((int)(Math.random()*10+123));
  9.                         i++;
  10.                 }
  11.         }

  12. }
複製代碼

作者: 郭又瑄    時間: 2023-1-6 20:53

本帖最後由 郭又瑄 於 2023-1-6 20:55 編輯
  1. package ch01;

  2. public class ch01 {

  3.         public static void main(String[] args) {
  4.                 // TODO 自動產生的方法 Stub
  5.            int i=0;
  6.            while(i<=30)
  7.            {
  8.                System.out.println((int)(Math.random()*10+123));
  9.                i++;
  10.            }
  11.         }

  12. }
複製代碼

作者: 賴聿均    時間: 2023-1-6 20:53

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

作者: 吳溦珊    時間: 2023-1-6 20:53

本帖最後由 吳溦珊 於 2023-1-6 20:55 編輯
  1. public class Ch01 {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub
  4.                 int i=1;
  5.                 while(i<=30){
  6.                         System.out.println((int)(Math.random()*10+123));
  7.                         i++;
  8.                 }       
  9.         }
  10. }
複製代碼

作者: 陳柏融    時間: 2023-1-6 20:54

  1. package ch01;

  2. public class ch01 {

  3.         public static void main(String[] args) {
  4.                 // TODO 自動產生的方法 Stub
  5.                 double d;
  6.                 int i=0;
  7.                 while(i<=30){
  8.                         d=(int)(Math.random()*10+123);
  9.                         System.out.println(d);
  10.                         i++;}
  11.         }

  12. }
複製代碼

作者: 尤爾帆    時間: 2023-1-6 20:56

  1. package ch01;

  2. public class ch01 {

  3.         public static void main(String[] args) {
  4.                 // TODO 自動產生的方法 Stub
  5.                
  6.                 int i=0;
  7.                 while(i<=30){
  8.                         System.out.println(r=(int)(Math.random()*10+123));
  9.                 }
  10.         }

  11. }
複製代碼





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