標題:
陣列 (五) - 二維陣列
[打印本頁]
作者:
方浩葦
時間:
2024-5-10 19:17
標題:
陣列 (五) - 二維陣列
一個 3x4 的二維陣列,總共可以儲存 12 筆資料。
本帖隱藏的內容需要回復才可以瀏覽
作者:
鄭豊翰
時間:
2024-6-8 11:43
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[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<<"n["<<i<<"]"<<n[i][j]<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2