標題:
陣列 (十) - 三維陣列
[打印本頁]
作者:
鄭繼威
時間:
2023-4-21 01:45
標題:
陣列 (十) - 三維陣列
試著做出一個 2x3x4 的三維陣列,總共可以儲存 24 筆資料。
裡面的值自行決定可以用for迴圈產生也可自己先宣告好
#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;
}
複製代碼
作者:
呂宗晉
時間:
2023-4-28 17:40
本帖最後由 呂宗晉 於 2023-4-28 19:49 編輯
#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;
}
複製代碼
作者:
呂得銓
時間:
2023-4-28 19:13
include<iostream>endel;
include<cstdlib>endel:
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;
}
複製代碼
作者:
廖秝瑜
時間:
2023-4-28 19: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 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;
}
複製代碼
作者:
邵凡榛
時間:
2023-4-28 19:14
#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<=1;i++)
for(int j=0;j<=2;j++)
for(int k=0;k<=3;k++)
cout<<"n["<<i<<"]["<<j<<"]["<<k<<"]="<<n[i][j][k]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2023-4-28 19:48
4
作者:
何權晉
時間:
2023-4-28 19:48
#include <iostream>
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;
}
複製代碼
作者:
黃子豪
時間:
2023-4-28 19:50
#include<iostream>
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;
}
複製代碼
作者:
蔡沛倢
時間:
2023-4-28 19:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a[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 b=0;b<2;b++){
for(int c=0;c<3;c++){
for(int d=0;d<4;d++){
cout<<"a"<<"["<<b<<"]"<<"["<<c<<"]"<<"["<<d<<"]"<<a[b][c][d]<<endl;
}
}
}
system("pause");
return 0;
}
複製代碼
作者:
曹祁望
時間:
2023-4-28 19:59
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
int n[2][3][4];
srand(time(NULL));
for(int i=0;i<=1;i++){
for(int j=0;j<=2;j++){
for(int k=0;k<=3;k++){
n[i][j][k]=rand()%11;
}
}
}
for(int i=0;i<=1;i++){
for(int j=0;j<=2;j++){
for(int k=0;k<=3;k++){
printf("n[%d][%d][%d]=[%d]\n",i,j,k,n[i][j][k]);
}
}
}
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2023-4-28 20:01
8
作者:
張絜晰
時間:
2023-4-28 20:01
#include<cstdlib>
#include<iostream>
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 a=0;a<2;a++){
for(int b=0;b<3;b++){
for(int c=0;c<4;c++){
cout<<n[a][b][c]<<endl;
}
}
}
system ("pause");
return 0;
}
複製代碼
作者:
盧玄皓
時間:
2023-4-28 20:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[2][3][4]={{{14,25,38,47},{57,68,67,85},{91,0,41,42}},
{{43,44,55,16},{57,58,89,80},{71,52,53,54}}};
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;
}
複製代碼
作者:
邱品惟
時間:
2023-8-4 18:03
#include<iostream>
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-1-9 09:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[2][3][4];
int a=1;
for(int i=0;i<=1;i++)
{
for(int j=0;j<=2;j++)
{
for(int k=0;k<=3;k++)
{
n[i][j][k]=a;
a=a+1;
}
}
}
for(int i=0;i<=1;i++)
{
for(int j=0;j<=2;j++)
{
for(int k=0;k<=3;k++)
{
cout<<"n["<<i<<"]["<<j<<"]["<<k<<"]="<<n[i][j][k]<<endl;
}
}
}
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2