返回列表 發帖

陣列 (三) - 二維陣列

一個 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 Ch02
  2. {
  3.         public static void main(String args[])
  4.         {
  5.                 int p[][]={{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+"]="+p[i][j]);
  9.                 }
  10.         }
  11. }
複製代碼
:))))))))))))))

TOP

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

  1. public class Ch01{
  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 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. import java.util.Scanner;
  2. public class Ch01 {
  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<3;j++)
  9.                                 System.out.println("n["+i+"]["+j+"]="+n[i][j]);
  10.                 }
  11.         }
  12. }
複製代碼

TOP

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

TOP

  1. import java.util.Scanner;
  2. public class Ch34 {
  3.         public static void main(String[] args){
  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.                         for(int j=0;j<4;j++)
  9.                                 System.out.println("n["+i+"]["+j+"]="+(n[i][j]));
  10.         }
  11. }
複製代碼

TOP

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

TOP

  1. public class Ch02 {

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

TOP

  1. import java.util.Scanner;

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


  17. }
複製代碼

TOP

  1. public class Ch23
  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 a[][]={{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("a["+i+"]["+j+"]="+a[i][j]);           
  9.     }
  10. }
複製代碼

TOP

  1. public class Ch00 {
  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 Ch30
  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 Ch10
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         String x[]={"座號",  "姓名",  "國文",  "英文",  "數學",  "平均"};
  6.         String y[]={"叮叮",  "迪西",  "啦啦",  "小波",  "太陽"};
  7.         
  8.         int z[][]={{78,89,66},
  9.                           {77,67,34},
  10.                           {90,98,91},
  11.                           {57,59,81},
  12.                           {45,66,92}};
  13.         
  14.         int avg;
  15.         for(int i=0; i<6; i++)
  16.         
  17.                 System.out.print(x[i]+"\t");
  18.                 System.out.println( );
  19.                 System.out.println("==============================================");
  20.                 for(int i=0; i<5; i++)
  21.                 {
  22.                 System.out.print((i+1)+"\t"+y[i]+"\t");
  23.             for(int j=0; j<3; j++)
  24.                 System.out.print(z[i][j]+"\t");
  25.                  
  26.         avg=Math.round((float)(z[i][0]+z[i][1]+z[i][2])/3) ;
  27.         System.out.println(avg);
  28.         }
  29.     }
  30. }
複製代碼
嗨嗨嗨嗨嗨嗨嗨嗨嗨

TOP

返回列表