返回列表 發帖

2022/02/06 課堂重點(睿宸)

本帖最後由 鄭繼威 於 2023-2-6 19:13 編輯

上次上課內容
[隨堂測驗] continue
亂數 (一)
亂數 (二)
亂數 (三)
[隨堂測驗] 亂數 (四)
陣列 (一)
陣列 (三) - 二維陣列
[隨堂測驗] 陣列 (五)
陣列的長度
對陣列排序
本帖隱藏的內容需要回復才可以瀏覽


本帖隱藏的內容需要積分高於 1 才可瀏覽


作業
[作業] 亂數 (五)
[作業] 陣列 (二)
陣列 (四) - 三維陣列
[作業] 陣列 (六)

  1. public class Ch29
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         int a[][]=new int[5][3];

  6.         //配合亂數產生成績(80~100)

  7.         for(int i=0;i<5;i++)
  8.         {
  9.             for(int j=0;j<3;j++)
  10.                 a[i][j]=(int)(Math.random()*21)+80;
  11.         }

  12.         System.out.println("座號\t國文\t英文\t數學");
  13.         System.out.println("=============================");
  14.         for(int i=0;i<5;i++)
  15.         {
  16.             System.out.print((i+1)+"\t");
  17.             for(int j=0;j<3;j++)
  18.                 System.out.print(a[i][j]+"\t");
  19.             System.out.println();
  20.         }

  21.     }
  22. }
複製代碼

TOP

返回列表