標題:
陣列 (四) - 二維陣列
[打印本頁]
作者:
陳品肇
時間:
2019-1-26 11:04
標題:
陣列 (四) - 二維陣列
一個 4x3 的二維陣列, 總共可以儲存 12 筆資料.
[attach]5804[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[4][3]={{1,2,3},{4,5,6},{7,8,9},{10,11,12}};
for(int i=0; i<4; i++)
{
for(int j=0; j<3; j++)
{
cout<<"n["<<i<<"]["<<j<<"]="<<n[i][j]<<endl;
}
}
system("pause");
return 0;
}
複製代碼
作者:
曲書辰
時間:
2019-1-26 15:09
本帖最後由 曲書辰 於 2019-1-26 15:17 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a[4][3]={{1,2,3},
{4,5,6},
{7,8,9},
{10,11,12}};
for(int i=0;i<4;i++)
{
for(int j=0;j<3;j++)
{
cout<<"a["<<i<<"]["<<j<<"]="<<a[i][j]<<endl;
}
}
system("pause");
return 0;
}
複製代碼
作者:
吳孟書
時間:
2019-1-26 15:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int b[4][3]={{1,2,3},{4,5,6},{7,8,9},{10,11,12}};
for(int i=0;i<4;i++)
{
for(int j=0;j<3;j++)
{
cout<<"b["<<i<<"]["<<j<<"]="<<b[i][j]<<endl;
}
}
system("pause");
return 0;
}
複製代碼
作者:
吳孟修
時間:
2019-1-26 15:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a[4][3]={{1,2,3},{4,5,6},{7,8,9},{10,11,12}};
for(int i=0;i<4;i++)
{
for(int j=0;j<3;j++)
{
cout<<"a["<<i<<"]["<<j<<"]="<<a[i][j]<<endl;
}
}
system("pause");
return 0;
}
複製代碼
作者:
章幼莛
時間:
2019-2-2 13:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int f[4][3]={{1,2,3},{4,5,6},{7,8,9},{10,11,12}};
for(int i=0;i<4;i++)
{
for(int j=0;j<3;j++)
{
cout<<"f["<<i<<"]["<<j<<"]="<<f[i][j]<<endl;
}
}
system("pause");
return 0;
}
複製代碼
回復
1#
陳品肇
作者:
洪寬瀧
時間:
2019-2-2 13:43
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[4][3]={{1,2,3},{4,5,6},{7,8,9},{10,11,12}};
for(int i=0;i<4;i++)
{
for(int j=0;j<3;j++)
{
cout<<"n["<<i<<"]["<<j<<"]="<<n[i][j]<<endl;
}
}
system("pause");
return 0;
}
複製代碼
作者:
王瑞喻
時間:
2019-2-2 14:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[4][3]={{1,2,3},
{4,5,6},
{7,8,9},
{10,11,12}};
for(int i=0;i<4;i++)
{
for(int j=0;j<3;j++)
{
cout<<"n["<<i<<"]["<<j<<"]="<<n[i][j]<<endl;
}
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2