返回列表 發帖

printf() 輸出練習 (二)

本帖最後由 tonyh 於 2020-2-5 14:15 編輯

改寫 陣列 (四) - 三維陣列 中的程式碼,改成以 printf() 方法做輸出。

  1. public class Ch40 {

  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.printf("n[%d][%d][%d]=%d%n",i,j,k,n[i][j][k]);
  12.                         }
  13.                 }
  14.         }
  15. }
複製代碼

  1. import java.util.Scanner;

  2. public class Ch99 {
  3.         public static void main(String[] args)
  4.     {
  5.             int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},
  6.                                {{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
  7.             for(int i=0;i<2;i++)
  8.                     for(int j=0;j<3;j++)
  9.                         for(int k=0;k<4;k++)
  10.                                 System.out.printf("n[%d][%d][%d]=%d%n",i,j,k,n[i][j][k]);
  11.     }
  12. }
複製代碼

TOP

  1. package blueming;

  2. public class blueming {

  3.          public static void main(String args[])
  4.      {
  5.              int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},
  6.                                   {{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
  7.              for(int i=0; i<2; i++)
  8.              {
  9.                      for(int j=0; j<3; j++)
  10.                      {
  11.                              for(int k=0; k<4; k++)
  12.                                      System.out.printf("n[%d][%d][%d]=%d%n",i,j,k,n[i][j][k]);
  13.                      }
  14.              }
  15.      }

  16. }
複製代碼

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

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.                                      {{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
  5.                 for(int i=0; i<2; i++)
  6.                         for(int j=0; j<3; j++)
  7.                                 for(int k=0; k<4; k++)                              
  8.                                         System.out.printf("n[%d][%d][%d]=%d%n",i,j,k,n[i][j][k]);
  9.         }
  10. }
複製代碼

TOP

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

TOP

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

  16. }
複製代碼

TOP

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

TOP

  1. public class Ch40 {

  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.printf("n[%d][%d][%d]=%d%n",i,j,k,n[i][j][k]);
  12.                         }
  13.                 }
  14.         }
  15. }
複製代碼

TOP

本帖最後由 何蕙妘 於 2020-2-5 14:25 編輯
  1. public class Ch55 {
  2.         public static void main(String[] args)
  3.         {
  4.                 int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
  5.                 for(int i=0;i<2;i++)
  6.                         for(int k=0;k<3;k++)
  7.                                 for(int j=0;j<4;j++)
  8.                                         System.out.printf("n[%d][%d][%d]=%d\n",i,k,j,n[i][k][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.                                 {{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
  7.                 for(int i=0; i<2; i++)
  8.                 {
  9.                         for(int j=0; j<3; j++)
  10.                         {
  11.                                 for(int k=0; k<4; k++)
  12.                                         System.out.printf("n[%d][%d][%d]=%s%n",i,j,k,n[i][j][k]);
  13.                         }
  14.                 }
  15.         }
  16. }
複製代碼

TOP

  1. public class Ch47 {

  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.printf("n[%d][%d][%d]=%d%n",i,j,k,n[i][j][k]);
  12.                         }
  13.                 }
  14.         }
  15. }
複製代碼

TOP

返回列表