返回列表 發帖

陣列 (三) - 二維陣列

一個 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. import java.util.Scanner;

  2. public class Ch05 {

  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. }
複製代碼

TOP

  1. public class Ch15 {

  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. }
複製代碼

TOP

  1. public class Ch30 {

  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 CH08
  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.             for(int j=0;j<4;j++)
  8.                 System.out.println("n["+i+"]["+j+"]="+n[i][j]);

  9.     }

  10. }
複製代碼

TOP

  1. public class Ch01
  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.                         {

  10.                                 System.out.println("n["+i+"]["+j+"]="+n[i][j]);

  11.                         }            
  12.                 }
  13.         }
  14. }
複製代碼

TOP

  1. public class Ch01
  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. }
複製代碼

TOP

  1. package ok;
  2. public class foradd2
  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.                 {
  11.                         System.out.println("n["+i+"]["+j+"]="+n[i][j]);
  12.                 }
  13.         }
  14.     }
  15. }
複製代碼

TOP

  1. package Ch01;

  2. import java.util.Scanner;

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

TOP

  1. public class Ch14
  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.     }
  13. }
複製代碼

TOP

  1. public class ch01
  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.                     {
  10.                     System.out.println("n["+i+"]["+j+"]="+n[i][j]);
  11.                     }
  12.             }       
  13.     }
  14. }
複製代碼
我好帥
我超級帥
我非常的帥
我宇宙第一帥

TOP

  1. public class Ch87 {

  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.                     for(int j=0; j<4; j++)
  7.                             System.out.println("n["+i+"]["+j+"]="+n[i][j]);
  8.                
  9.                
  10.                 }
  11.         }

  12. }
複製代碼

TOP

  1. public class Ch36 {

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

  7.                 }

  8.         }

  9. }
複製代碼

TOP

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

TOP

  1. public class Ch02
  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.            
  7.             for(int i=0; i<3; i++)
  8.             {
  9.                    
  10.                     for(int j=0; j<4; j++)
  11.                             System.out.println("n["+i+"]["+j+"]="+n[i][j]) ;
  12.             }
  13.            
  14.            
  15.            


  16.     }
  17. }
複製代碼

TOP

  1. public class Ch33333
  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. }
複製代碼

TOP

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

TOP

  1. public class Ch165 {

  2.         public static void main(String[] args) {
  3.     int a[][]={{1,2,3,4,5,6,7,8,9,10},
  4.                      {11,12,13,14,15,16,17,18,19,20},
  5.                      {21,22,23,24,25,26,27,28,29,30},
  6.                      {31,32,33,34,35,36,37,38,39,40},
  7.                      {41,42,43,44,45,46,47,48,49,50},
  8.                      {51,52,53,54,55,56,57,58,59,60},
  9.                      {61,62,63,64,65,66,67,68,69,70},
  10.                      {71,72,73,74,75,76,77,78,79,80}};
  11.     for(int i=0; i<8; i++)
  12.     {
  13.             for(int k=0; k<10; k++)
  14.                     System.out.print("a["+i+"]["+k+"]="+a[i][k]+"\t");
  15.     System.out.println();       
  16.     }
  17.    
  18.         }

  19. }
複製代碼

TOP

  1. public class Ch02
  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. }
複製代碼

TOP

返回列表