本帖最後由 許婷芳 於 2020-7-25 11:08 編輯
一個 3x4 的二維陣列 可存放 12 筆資料
- public class Ch36
- {
- public static void main(String args[])
- {
- int n[][]={{1,2,3,4},{5,6,7,8},{9,10,11,12}};
- for(int i=0; i<3; i++)
- {
- for(int j=0; j<4; j++)
- System.out.println("n["+i+"]["+j+"]="+n[i][j]);
- }
- }
- }
複製代碼 |