返回列表 發帖
  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.                                 {{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
  6.                 for(int i=0; i<2; i++);
  7.                 {
  8.                         for(int j=0; j<3; j++)
  9.                         {
  10.                                 for(int k=0; k<4; k++)

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

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

TOP

  1. package 陣列;

  2. public class ch04
  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.                                      {{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
  8.                 for(int i=0;i<2;i++)
  9.                 {
  10.                         for(int j=0;j<3;j++)
  11.                         {
  12.                                 for(int k=0;k<4;k++)
  13.                                         System.out.println("n["+i+"]["+j+"]["+k+"]="+n[i][j][k]);
  14.                         }
  15.                 }
  16.         }

  17. }
複製代碼

TOP

返回列表