標題:
陣列 (四) - 二維陣列
[打印本頁]
作者:
張翼安
時間:
2016-3-5 11:13
標題:
陣列 (四) - 二維陣列
一個 4x3 的二維陣列, 總共可以儲存 12 筆資料.
#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<=3; i++)
{
for(int j=0; j<=2; j++)
{
cout<<a[i][j]<<"\t";
}
cout<<endl;
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡庭豪
時間:
2016-3-5 11:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int hh[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;i<3;i++)
{
cout<<hh[i][j];
}
cout<<endl;
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡季樺
時間:
2016-3-7 12:31
#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<=3; i++)
{
for(int j=0; j<=2; j++)
{
cout<<a[i][j]<<"\t";
}
cout<<endl;
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張文擇
時間:
2016-4-26 16:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a[4][3]={{5,4,6},
{7,9,8},
{1,3,2},
{1,4,7}};
for(int i=0;i<=3; i++)
{
for(int x=0;x<=2; x++)
{
cout<<a[i][x]<<"\t";
}
cout<<endl;
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2