標題:
陣列 (五) - 二維陣列
[打印本頁]
作者:
陳曜誌
時間:
2025-1-16 21:08
標題:
陣列 (五) - 二維陣列
一個 3x4 的二維陣列,總共可以儲存 12 筆資料。
本帖隱藏的內容需要回復才可以瀏覽
作者:
楊炘樺
時間:
2025-1-17 18:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int data[3][4]={{1,2,3,4},{5,6,7,8},{9,10,11,12}};
for(int i=0;i<3;i++)
{
for(int j=0;j<4;j++)
cout<<"data"<<'['<<i<<']'<<'['<<j<<']'<<'='<<data[i][j]<<endl;
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2