標題:
陣列 (十) - 三維陣列
[打印本頁]
作者:
tonyh
時間:
2022-12-31 14:25
標題:
陣列 (十) - 三維陣列
本帖最後由 tonyh 於 2022-12-31 14:43 編輯
一個 2x3x4 的三維陣列,總共可以儲存 24 筆資料。
#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;
//printf("n[%d][%d][%d]=%d\n",i,j,k,n[i][j][k]);
system("pause");
return 0;
}
複製代碼
作者:
陳宥霖
時間:
2022-12-31 14:40
#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;
}
複製代碼
作者:
宜儒
時間:
2022-12-31 14:40
本帖最後由 宜儒 於 2022-12-31 14:44 編輯
#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;
//printf("n[%d][%d][%d]=%d\n",i,j,k,n[i][j][k]);
system("pause");
return 0;
}
複製代碼
作者:
吳俊頡
時間:
2022-12-31 14:45
#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; i++)
for(int k=0; k<4; i++)
cout<<"n["<<i<<"]["<<j<<"]["<<k<<"]="<<n[i][j][k]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳牧謙
時間:
2022-12-31 14:45
#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++)
printf("n[%d][%d][%d]=%d\n",i,j,k,n[i][j][k]);
system("pause");
return 0;
}
複製代碼
作者:
羅紹齊
時間:
2022-12-31 14:45
#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;
}
複製代碼
作者:
林雋喆
時間:
2022-12-31 14:46
#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;
}
複製代碼
作者:
翁川祐
時間:
2022-12-31 14:46
#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;
}
複製代碼
作者:
葉佳和
時間:
2022-12-31 14: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;
}
複製代碼
作者:
盧禹丞
時間:
2022-12-31 14:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name[5]={"王大明","李大頭","蘇小安","余美美","張醜醜"};
float score[5][4]={{43,55,77,0},{76,77,43,0},{80,95,80,0},{70,95,75,0},{80,85,95,0}};
cout<<"座號\t姓名\t\t國文\t英文\t數學\t平均"<<endl;
cout<<"============================================"<<endl;
for(int i=0; i<5; i++)
{
cout<<i+1<<"\t"<<name[i]<<"\t\t";
score[i][3]=(score[i][0]+score[i][1]+score[i][2])/3;
for(int j=0; j<4; j++)
cout<<score[i][j]<<"\t";
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳泓亦
時間:
2022-12-31 14:51
#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;
}
複製代碼
作者:
徐啟祐
時間:
2022-12-31 14: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 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-1-6 21:42
#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-1-13 22:21
#include <iostream>
#include<cstdlib>
using namespace std;
int main()
{
int array[4][3][2] = { {{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 < 4;i++)
{
for (int e = 0;e < 3;e++)
{
for (int f = 0;f < 2;f++)
{
cout << "[" << i << "][" << e << "][" << f << "] = " << array[i][e][f] << endl;;
}
}
}
cout << endl;
};
複製代碼
作者:
黃品禎
時間:
2023-4-12 19:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a[2][5][3]={{{90,85,85},{70,75,80},{80,95,80},{70,95,75},{80,85,95}},
{{90,85,85},{70,75,80},{80,95,80},{70,95,75},{80,85,95}}};
for(int i=0; i<2; i++)
{
for(int j=0; j<5; j++)
{
for(int k=0; k<3; k++)
{
cout<<"["<<i<<"]"<<"["<<j<<"]"<<"["<<k<<"]="<<a[i][j][k]<<"\n";
}
}
}
system("pause");
return 0;
}
複製代碼
作者:
朱奕祈
時間:
2024-1-29 16:59
#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]<<endl;
}
}
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2