返回列表 發帖
  1. #include<cstdlib>
  2. #include<iostream>
  3. using namespace std;
  4. int main(){
  5. 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}}};

  6. for(int a=0;a<2;a++){
  7.         for(int b=0;b<3;b++){
  8.         for(int c=0;c<4;c++){
  9.         cout<<n[a][b][c]<<endl;
  10.         }
  11.         }
  12.         }
  13.         

  14. system ("pause");
  15. return 0;
  16. }
複製代碼
Attention Seeker </3

TOP

返回列表