標題:
陣列 (五) - 二維陣列
[打印本頁]
作者:
tonyh
時間:
2019-11-29 20:44
標題:
陣列 (五) - 二維陣列
一個 3x4 的二維陣列,總共可以儲存 12 筆資料。
本帖隱藏的內容需要回復才可以瀏覽
作者:
李宇澤
時間:
2019-11-29 20:56
本帖最後由 李宇澤 於 2019-11-29 20:58 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a[3][4]={{1,2,3,4},
{5,6,7,8},
{9,10,11,12}};
for(int x=0; x<3; x++)
{
for(int y=0; y<4; y++)
{
cout<<"a["<<x<<"]["<<y<<"]="<<a[x][y]<<endl;
}
}
system("pause");
return 0;
}
複製代碼
作者:
林政瑜
時間:
2019-11-29 20:59
本帖最後由 林政瑜 於 2019-12-1 08:14 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int c[3][4]={{1,2,3,4},{5,6,7,8},{9,10,11,12}};
for(int s=0; s<3; s++)
{
for(int i=0; i<4; i++)
cout<<"c["<<s<<"]["<<i<<"]="<<c[s][i]<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃辰昊
時間:
2019-11-29 21:01
本帖最後由 黃辰昊 於 2019-11-29 21:04 編輯
#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 k=0; k<4; k++)
cout<<"n["<<i<<"]["<<k<<"]="<<n[i][k]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
余有晉
時間:
2019-11-29 21:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a[3][4]={{1,2,3,4},
{5,6,7,8},
{9,10,11,12}};
for(int x=0; x<3; x++)
{
for(int y=0; y<4; y++)
{
cout<<"a["<<x<<"]["<<y<<"]="<<a[x][y]<<endl;
}
}
system("pause");
return 0;
}
複製代碼
作者:
黃宥華
時間:
2019-11-29 21:02
本帖最後由 黃宥華 於 2019-11-29 21:05 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int o[3][4]={{1,2,3,4,},
{5,6,7,8},
{9,10,11,12}};
for(int m=0; m<=2; m++)
for(int i=0; i<=3; i++)
cout<<"o["<<m<<"]["<<i<<"]="<<o[m][i]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
董宸佑
時間:
2019-11-29 21:03
#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;
}
複製代碼
作者:
孫嘉駿
時間:
2019-11-29 22:10
本帖最後由 孫嘉駿 於 2019-11-30 08:41 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int j[3][4]={{1,2,3,4},{5,6,7,8},{9,10,11,12}};
for(int i=0; i<3; i++)
for(int f=0; f<4; f++)
cout<<"j["<<i<<"]["<<f<<"]"<<j[i][f]<<endl;
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宥穎
時間:
2019-11-30 21:56
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2