標題:
陣列 (十) - 三維陣列
[打印本頁]
作者:
方浩葦
時間:
2024-3-22 01:08
標題:
陣列 (十) - 三維陣列
一個 2x3x4 的三維陣列,總共可以儲存 24 筆資料。
本帖隱藏的內容需要積分高於 1 才可瀏覽
作者:
陳品瑞
時間:
2024-4-13 19:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[2][3][4]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int x=0;x<2;x++)
{
for(int y=0;y<3;y++)
{
for(int z=0;z<4;z++)
{
cout<<"n["<<x<<"]["<<y<<"]["<<z<<"]"<<n[x][y][z]<<endl;
}
}
}
system("pause");
return 0;
}
複製代碼
作者:
陳宥澄
時間:
2024-4-13 19:56
本帖最後由 陳宥澄 於 2024-4-13 19:57 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[2][3][4] = {{{1,2,3,4},
{5,6,7,8},
{9,10,11,12}},
{{13,14,15,16},
{17,18,19,20},
{21,22,23,24}}};
for(int i=0; i<2; i++)
{
for(int j=0; j<3; j++)
{
for(int k=0; k<4; k++)
{
cout << "n[" << i << "][" << j << "][" << k << "]=" << n[i][j][k] <<endl;
}
}
}
system("pause");
return 0;
}
複製代碼
作者:
詠綺
時間:
2024-4-13 19:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[2][3][4]={{{1, 2, 3, 4}, {5, 6, 7, 8}, {9, 10, 11, 12}}, {{13, 14, 15, 16}, {17, 18, 19, 20}, {21, 22, 23, 24}}};
for(int i=0;i<2;i++)
{
for(int j=0;j<3;j++)
{
for(int a=0;a<4;a++)
{
cout<<"n["<<i<<"]["<<j<<"]["<<a<<"]="<<n[i][j][a]<<"\n";
}
}
}
system("pause");
return 0;
}
複製代碼
作者:
謝崇亘
時間:
2024-4-13 19:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[2][3][4]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int x=0;x<2;x++)
{
for(int y=0;y<3;y++)
{
for(int z=0;z<4;z++)
{
cout<<"n["<<x<<"]["<<y<<"]["<<z<<"]"<<n[x][y][z]<<endl;
}
}
}
system("pause");
return 0;
}
複製代碼
作者:
楊子毅
時間:
2024-4-13 20:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[2][3][4]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int x=0;x<2;x++)
{
for(int y=0;y<3;y++)
{
for(int z=0;z<4;z++)
{
cout<<"n["<<x<<"]["<<y<<"]["<<z<<"]"<<n[x][y][z]<<endl;
}
}
}
system("pause");
return 0;
}
複製代碼
作者:
蘇巳權
時間:
2024-4-13 20:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int ab[2][3][4]={{{1,2,3,4},
{5,6,7,8},
{9,10,11,12}},{{13,14,15,16},
{17,18,19,20},
{21,22,23,24}}};
for(int a=0;a<2;a++)
{
for(int b=0;b<3;b++)
{
for(int c=0;c<4;c++)
{
cout<<"n["<<a<<"]["<<b<<"]["<<c<<"]="<<ab[a][b][c]<<endl;
}
}
}
system("pause");
return 0;
}
複製代碼
作者:
黃子瑞
時間:
2024-4-13 20:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[2][3][4]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int x=0;x<2;x++)
{
for(int y=0;y<3;y++)
{
for(int z=0;z<4;z++)
{
cout<<"n["<<x<<"]["<<y<<"]["<<z<<"]"<<n[x][y][z]<<endl;
}
}
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2