Board logo

標題: 陣列 (三) - 二維陣列 [打印本頁]

作者: 鄭繼威    時間: 2023-3-3 19:45     標題: 陣列 (三) - 二維陣列

一個 3x4 的二維陣列 可存放 12 筆資料

  1. public class Ch36
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         int n[][]={{1,2,3,4},{5,6,7,8},{9,10,11,12}};
  6.         for(int i=0; i<3; i++)
  7.         {
  8.             for(int j=0; j<4; j++)
  9.                 System.out.println("n["+i+"]["+j+"]="+n[i][j]);
  10.         }
  11.     }
  12. }
複製代碼

作者: 柏霖    時間: 2023-3-4 16:35

  1. import java.io.Console;
  2. public class test4 {

  3.         public static void main(String[] args)
  4.         {

  5.                 int n[][]={{1,2,3,4},{5,6,7,8},{9,10,11,12}};
  6.         for(int i=0; i<3; i++)
  7.         {
  8.             for(int j=0; j<4; j++)
  9.                 System.out.println("n["+i+"]["+j+"]="+n[i][j]);
  10.         }

  11.         }
  12. }
複製代碼

作者: 侯宣任    時間: 2023-3-4 16:40

  1. public class Ch36
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         int n[][]={{1,2,3,4},{5,6,7,8},{9,10,11,12}};
  6.         for(int i=0; i<3; i++)
  7.         {
  8.             for(int j=0; j<4; j++)
  9.                 System.out.println("n["+i+"]["+j+"]="+n[i][j]);
  10.         }
  11.     }
  12. }
複製代碼

作者: 郭閎宇    時間: 2023-3-4 16:43

  1. public class Ch36
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         int n[][]={{1,2,3,4},{5,6,7,8},{9,10,11,12}};
  6.         for(int i=0; i<3; i++)
  7.         {
  8.             for(int j=0; j<4; j++)
  9.                 System.out.println("n["+i+"]["+j+"]="+n[i][j]);
  10.         }
  11.     }
  12. }
複製代碼

作者: 錢冠叡    時間: 2023-3-4 16:45

  1. public class Ch33
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         int n[][]={{1,2,3,4},{5,6,7,8},{9,10,11,12}};
  6.         for(int i=0; i<3; i++)
  7.         {
  8.             for(int j=0; j<4; j++)
  9.                 System.out.println("n["+i+"]["+j+"]="+n[i][j]);
  10.         }
  11.     }
  12. }
複製代碼

作者: 許浩浩    時間: 2023-3-4 16:47

  1. import java.util.Scanner;
  2. public class Ch01
  3. {
  4.   public static void main(String args[])
  5.   {
  6.     int a[][]={{1,2,3,4},{5,6,7,8},{9,10,11,12}};

  7.     for(int i=0;i<=2;i++)
  8.     {
  9.       for(int j=0;j<=3;j++)
  10.       {
  11.       System.out.println("n["+i+"]["+j+"]="+a[i][j]);
  12.       }
  13.     }
  14.   }
  15. }
複製代碼

作者: 侯宣仲    時間: 2023-3-4 16:49

  1. public class Ch36
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         int n[][]={{5,7,8,258},{52,527,75,752},{52,25,15,275}};
  6.         for(int i=0; i<3; i++)
  7.         {
  8.             for(int j=0; j<4; j++)
  9.                 System.out.println("n["+i+"]["+j+"]="+n[i][j]);
  10.         }
  11.     }
  12. }
複製代碼

作者: 鄭繼威    時間: 2023-3-4 16:56

6
作者: 石皓云    時間: 2023-3-4 17:13

  1. public class Ch36
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         int n[][]={{1,2,3,4},{5,6,7,8},{9,10,11,12}};
  6.         for(int i=0; i<3; i++)
  7.         {
  8.             for(int j=0; j<4; j++)
  9.                 System.out.println("n["+i+"]["+j+"]="+n[i][j]);
  10.         }
  11.     }
  12. }
複製代碼

作者: 張駿霖    時間: 2023-3-5 09:37

  1. public class Ch36
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         int n[][]={{1,2,3,4},{5,6,7,8},{9,10,11,12}};
  6.         for(int i=0; i<3; i++)
  7.         {
  8.             for(int j=0; j<4; j++)
  9.                 System.out.println("n["+i+"]["+j+"]="+n[i][j]);
  10.         }
  11.     }
  12. }
複製代碼





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