Board logo

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

作者: 陳曜誌    時間: 2025-1-16 21:08     標題: 陣列 (五) - 二維陣列

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



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

作者: 楊炘樺    時間: 2025-1-17 18:31

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int data[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<<"data"<<'['<<i<<']'<<'['<<j<<']'<<'='<<data[i][j]<<endl;
  11.     }
  12. }
複製代碼





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