Board logo

標題: 陣列 (五) - 二維陣列 [打印本頁]

作者: tonyh    時間: 2019-11-29 20:44     標題: 陣列 (五) - 二維陣列

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



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

作者: 李宇澤    時間: 2019-11-29 20:56

本帖最後由 李宇澤 於 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. }
複製代碼

作者: 林政瑜    時間: 2019-11-29 20:59

本帖最後由 林政瑜 於 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. }
複製代碼

作者: 黃辰昊    時間: 2019-11-29 21:01

本帖最後由 黃辰昊 於 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. }
複製代碼

作者: 余有晉    時間: 2019-11-29 21:01

  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. }
複製代碼

作者: 黃宥華    時間: 2019-11-29 21:02

本帖最後由 黃宥華 於 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. }
複製代碼

作者: 董宸佑    時間: 2019-11-29 21:03

  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. }
複製代碼

作者: 孫嘉駿    時間: 2019-11-29 22:10

本帖最後由 孫嘉駿 於 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. }
複製代碼

作者: 陳宥穎    時間: 2019-11-30 21:56

  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. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2