標題:
陣列 (四) - 二維陣列
[打印本頁]
作者:
tonyh
時間:
2014-1-11 17:47
標題:
陣列 (四) - 二維陣列
本帖最後由 tonyh 於 2014-1-18 16:39 編輯
一個 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;
}
複製代碼
作者:
施伯叡
時間:
2014-1-11 17:50
#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;
}
system("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2014-1-11 17:51
#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<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2014-1-11 17:51
#include<iostream>
#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;
}
system ("pause");
return 0;
}
複製代碼
作者:
張郁偵
時間:
2014-1-11 17:52
#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<<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2014-1-11 17:53
#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<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉得旗
時間:
2014-1-11 17:55
#include<iostream>
#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;
}
system ("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2014-1-11 17:56
#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;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2