返回列表 發帖
  1. public class Ch01
  2. {
  3.   public static void main(String args[])
  4.     {
  5.         int n[][][]={{{2,9,8,14,88,65},{56,97,58,59,84,87},{15,33,98,5,145,265}},
  6.                      {{531,874,879,64,310,12},{541,365,55,877,101,20},{887,654,99,100,32,1}}};
  7.         for(int i=0; i<2; i++)
  8.         {
  9.             for(int j=0; j<3; j++)
  10.             {
  11.               for(int l=0; l<6; l++)
  12.                 System.out.println("n["+i+"]["+j+"]["+l+"]="+n[i][j][l]);
  13.             }   
  14.         }
  15.     }
  16. }
複製代碼

TOP

返回列表