返回列表 發帖

陣列 (三) - 二維陣列

一個 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. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. public class Class666 {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub
  4.            int n[][]=new int[][]{{1,2,3,4},{5,6,7,8},{9,10,11,12}};
  5.            for(int i=0;i<n.length;i++)
  6.            {
  7.                    for(int j=0;j<n[i].length;j++)
  8.                            System.out.println("n["+i+"]["+j+"]="+n[i][j]);
  9.            }
  10.         }

  11. }
複製代碼

TOP

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

TOP

  1. public class work {

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

  10.           }        
  11. }
  12.    
複製代碼

TOP

  1. public class haahhhahhhah {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub

  4.                 int n[][] = { { 1, 2, 3, 4 }, { 5, 6, 7, 8 }, { 9, 10, 11, 12 } };

  5.                 for (int i = 0; i < 3; i++) {
  6.                         for (int j = 0; j < 4; j++)
  7.                                 System.out.println("n[" + i + "][" + j + "]=" + n[i][j]);
  8.                 }

  9.         }
  10. }
複製代碼

TOP

  1. public class De {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub
  4.          
  5.                 int n[][]=new int[][]{{1,2,3,4},
  6.                                             {5,6,7,8},
  7.                                             {9,10,11,12}};
  8.              
  9.                 for(int i=0; i<n.length; i++)
  10.                 {
  11.                                 for(int j=0; j<n[i].length; j++)
  12.                         System.out.println("n["+i+"]["+j+"]="+n[i][j]);
  13.                 }
  14.             }
  15.         }
複製代碼

TOP

  1. public class Hello {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub

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

  13. }
複製代碼

TOP

  1. package haha;

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

TOP

  1. public class CH01 {

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

TOP

  1. public class Ch27 {

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

  15. }
複製代碼

TOP

返回列表