返回列表 發帖

陣列 (十) - 三維陣列

一個 2x3x4 的三維陣列,總共可以儲存 24 筆資料。

本帖隱藏的內容需要積分高於 1 才可瀏覽

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n[2][3][4]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
  7.     for(int x=0;x<2;x++)
  8.     {
  9.         for(int y=0;y<3;y++)
  10.         {
  11.             for(int z=0;z<4;z++)
  12.             {
  13.                 cout<<"n["<<x<<"]["<<y<<"]["<<z<<"]"<<n[x][y][z]<<endl;
  14.             }
  15.         }   
  16.     }
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

本帖最後由 陳宥澄 於 2024-4-13 19:57 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         int n[2][3][4] = {{{1,2,3,4},
  7.                                     {5,6,7,8},
  8.                                     {9,10,11,12}},
  9.                                         {{13,14,15,16},
  10.                                    {17,18,19,20},
  11.                                     {21,22,23,24}}};
  12.         for(int i=0; i<2; i++)
  13.         {
  14.                 for(int j=0; j<3; j++)
  15.                 {
  16.                         for(int k=0; k<4; k++)
  17.                         {
  18.                                 cout << "n[" << i << "][" << j << "][" << k << "]=" << n[i][j][k] <<endl;
  19.                         }
  20.                 }
  21.         }
  22.         system("pause");
  23.         return 0;
  24. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n[2][3][4]={{{1, 2, 3, 4}, {5, 6, 7, 8}, {9, 10, 11, 12}}, {{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 a=0;a<4;a++)
  12.             {
  13.                 cout<<"n["<<i<<"]["<<j<<"]["<<a<<"]="<<n[i][j][a]<<"\n";
  14.             }
  15.         }
  16.     }
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n[2][3][4]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
  7.     for(int x=0;x<2;x++)
  8.     {
  9.         for(int y=0;y<3;y++)
  10.         {
  11.             for(int z=0;z<4;z++)
  12.             {
  13.                 cout<<"n["<<x<<"]["<<y<<"]["<<z<<"]"<<n[x][y][z]<<endl;
  14.             }
  15.         }   
  16.     }
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n[2][3][4]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
  7.     for(int x=0;x<2;x++)
  8.     {
  9.         for(int y=0;y<3;y++)
  10.         {
  11.             for(int z=0;z<4;z++)
  12.             {
  13.                 cout<<"n["<<x<<"]["<<y<<"]["<<z<<"]"<<n[x][y][z]<<endl;
  14.             }
  15.         }   
  16.     }
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int ab[2][3][4]={{{1,2,3,4},
  7.                     {5,6,7,8},
  8.                     {9,10,11,12}},{{13,14,15,16},
  9.                                    {17,18,19,20},
  10.                                    {21,22,23,24}}};
  11.     for(int a=0;a<2;a++)
  12.     {
  13.           for(int b=0;b<3;b++)
  14.           {
  15.               for(int c=0;c<4;c++)
  16.               {  
  17.                    cout<<"n["<<a<<"]["<<b<<"]["<<c<<"]="<<ab[a][b][c]<<endl;
  18.               }
  19.           }
  20.     }
  21.     system("pause");
  22.     return 0;
  23. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n[2][3][4]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
  7.     for(int x=0;x<2;x++)
  8.     {
  9.         for(int y=0;y<3;y++)
  10.         {
  11.             for(int z=0;z<4;z++)
  12.             {
  13.                 cout<<"n["<<x<<"]["<<y<<"]["<<z<<"]"<<n[x][y][z]<<endl;
  14.             }
  15.         }   
  16.     }
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼
༼ つ ◕_◕ ༽つ༼ つ ◕_◕ ༽つ༼ つ ◕_◕ ༽つ

TOP

返回列表