• 大小: 1.84KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-21
  • 标签:

资源简介

C++实战源码-将二维数组行列对换(入门级实例127).zip

资源截图

代码片段和文件信息

#include 
#include 
using namespace std;
int fun(int array[3][3])
{
int ijt;
for(i=0;i<3;i++)
for(j=0;j {
t=array[i][j];
array[i][j]=array[j][i];
array[j][i]=t;
}
return 0;
}
void main()
{
int ij;
int array[3][3]={{123}{456}{789}};
cout << “Converted Front“ < for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
cout << setw(7) << array[i][j] ;
cout<< endl;
}
fun(array);
cout << “Converted result“ < for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
cout << setw(7) << array[i][j] ;
cout<< endl;
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         599  2010-03-09 10:06  Sample\main.cpp
     文件        4276  2010-02-03 20:57  Sample\Sample.dsp
     文件         535  2009-12-21 17:11  Sample\Sample.dsw

评论

共有 条评论