返回列表 發帖

陣列 (五) - 二維陣列

一個 3x4 的二維陣列,總共可以儲存 12 筆資料。



本帖隱藏的內容需要回復才可以瀏覽

本帖最後由 李宇澤 於 2019-11-29 20:58 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a[3][4]={{1,2,3,4},
  7.                  {5,6,7,8},
  8.                  {9,10,11,12}};
  9.     for(int x=0; x<3; x++)
  10.     {
  11.        for(int y=0; y<4; y++)
  12.        {
  13.             cout<<"a["<<x<<"]["<<y<<"]="<<a[x][y]<<endl;
  14.        }
  15.     }
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼
李宇澤Oscar

TOP

本帖最後由 林政瑜 於 2019-12-1 08:14 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {      
  6.    
  7.     int c[3][4]={{1,2,3,4},{5,6,7,8},{9,10,11,12}};
  8.     for(int s=0; s<3; s++)
  9.     {
  10.     for(int i=0; i<4; i++)
  11.     cout<<"c["<<s<<"]["<<i<<"]="<<c[s][i]<<endl;
  12.     }  
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

TOP

本帖最後由 黃辰昊 於 2019-11-29 21:04 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     int n[3][4]={{1,2,3,4},
  7.                  {5,6,7,8},
  8.                  {9,10,11,12}};
  9.     for(int i=0; i<3; i++)
  10.         for(int k=0; k<4; k++)
  11.             cout<<"n["<<i<<"]["<<k<<"]="<<n[i][k]<<endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼
Huang chenhao

TOP

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

TOP

本帖最後由 黃宥華 於 2019-11-29 21:05 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     int o[3][4]={{1,2,3,4,},
  7.                  {5,6,7,8},
  8.                  {9,10,11,12}};
  9.     for(int m=0; m<=2; m++)
  10.         for(int i=0; i<=3; i++)
  11.             cout<<"o["<<m<<"]["<<i<<"]="<<o[m][i]<<endl;
  12.     system("pause");
  13.     return 0;   
  14. }
複製代碼
hahahahahahahaha

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n[3][4]={{1,2,3,4},{5,6,7,8},{9,10,11,12}};
  7.     for(int i=0; i<3; i++)
  8.     {
  9.         for(int j=0; j<4; j++)
  10.             cout<<"n"<<"["<<i<<"]"<<"["<<j<<"]"<<"="<<n[i][j]<<endl;
  11.     }
  12.     system("pause");
  13.     return 0;   
  14. }
複製代碼

TOP

本帖最後由 孫嘉駿 於 2019-11-30 08:41 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int j[3][4]={{1,2,3,4},{5,6,7,8},{9,10,11,12}};
  7.         for(int i=0; i<3; i++)
  8.             for(int f=0; f<4; f++)
  9.                 cout<<"j["<<i<<"]["<<f<<"]"<<j[i][f]<<endl;
  10.     cout<<endl;
  11.     system("pause");
  12.     return 0;
  13. }
複製代碼

TOP

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

TOP

返回列表