ch7_6.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //*********************
  2. //**    ch7_6.cpp    **
  3. //*********************
  4. #include <iostream.h>
  5. void main()
  6. {
  7.   int array1[2][3]={1,2,3,4,5};
  8.   int array2[2][3]={{1,2},{4}};
  9.   int i,j;
  10.   for(i=0; i<2; i++){    //按行列输出数组array1
  11.     for(j=0; j<3; j++)
  12.       cout <<array1[i][j] <<",";
  13.     cout <<endl;
  14.   }
  15.   cout <<endl;
  16.   for(i=0; i<2; i++){    //按行列输出数组array2
  17.     for(j=0; j<3; j++)
  18.       cout <<array2[i][j] <<",";
  19.     cout <<endl;
  20.   }
  21. }