Board logo

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

作者: 陳品肇    時間: 2019-1-26 10:13     標題: 陣列 (四) - 二維陣列

一個 4x3 的二維陣列, 總共可以儲存 12 筆資料.
[attach]5802[/attach]
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n[4][3]={{1,2,3},{4,5,6},{7,8,9},{10,11,12}};
  7.     for(int i=0; i<4; i++)
  8.     {
  9.         for(int j=0; j<3; j++)
  10.         {
  11.             cout<<"n["<<i<<"]["<<j<<"]="<<n[i][j]<<endl;            
  12.         }     
  13.     }
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

作者: 蘇昱全    時間: 2019-1-26 11:55

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

作者: 田宇任    時間: 2019-1-26 11:56

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

作者: 湯郡一    時間: 2019-1-26 11:57

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





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