本帖最後由 陳品肇 於 2019-7-20 17:23 編輯
利用二維陣列, 試做一個包含五位同學, 各三組分數的成績表格.
表格的形式如下:
- import java.util.Iterator;
- public class Ch20 {
- public static void main(String[] args) {
- // TODO 自動產生的方法 Stub
- String [] name =new String[]{"王曉明","李大頭","蘇小安","余美美","張醜醜"};
- int [][]score = new int [][]{{90,85,85},{70,75,80},{80,95,80},
- {70,95,75},{80,85,95}};
-
- System.out.println("座號\t姓名\t國文\t英文\t數學");
- System.out.println("===================================");
-
- for (int i = 0; i < score.length; i++) {
- System.out.print((i+1)+"\t"+name[i]+"\t");
- for (int j = 0; j < score[i].length; j++) {
- System.out.print(score[i][j]+"\t");
- }
- System.out.println();
- }
-
- }
- }
複製代碼 |