標題:
陣列 (四) - 二維陣列
[打印本頁]
作者:
tonyh
時間:
2015-9-4 19:47
標題:
陣列 (四) - 二維陣列
本帖最後由 tonyh 於 2016-7-16 12:03 編輯
一個 3x4 的二維陣列, 總共可以儲存 12 筆資料.
[attach]1671[/attach]
#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<<"]["<<j<<"]="<<n[i][j]<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
曾挺桂
時間:
2015-9-4 20:20
#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<=3; i++)
{
for(int j=0; j<=2; j++)
{
cout<<"n["<<i<<"]["<<j<<"]="<<n[i][j]<<endl;
}
}
system("pause");
return 0;
}
複製代碼
作者:
沈子耕
時間:
2015-9-4 20:21
#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<=3; i++){
for(int j=0; j<=2; j++)
cout<<"n["<<i<<"]["<<j<<"]="<<n[i][j]<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王翔
時間:
2015-9-4 20:24
#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<=3;i++)
{
for(int j=0;j<=2;j++)
{
cout<<"n["<<i<<"]["<<j<<"]="<<n[i][j]<<endl;
}
}
system("pause");
return 0;
}
複製代碼
作者:
黃璽安
時間:
2015-9-4 20:25
#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 <= 3; i++)
{
for(int j = 0; j <= 2; j++)
cout << "n["<< i <<"]["<< j <<"] = "<< n[i][j] << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳思惟
時間:
2015-9-4 20:27
#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 <= 3; i++)
{
for(int j = 0; j <= 2; j++)
cout << "n["<< i <<"]["<< j <<"] = "<< n[i][j] << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王翔
時間:
2015-9-4 21:13
#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<=3;i++)
{
for(int j=0;j<=2;j++)
{
cout<<"n["<<i<<"]["<<j<<"]="<<n[i][j]<<endl;
}
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2