Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
3556 | 张曦元 | 数组元素对调 | C++ | 编译错误 | 0 | 0 MS | 0 KB | 537 | 2019-12-20 18:25:36 |
#include<iostream> using namespace std; int main(){ int a[101][101],b[101][101],x,y,c,d; cin>>x>>y; for(int i=1;i<=x;i++){ for(int j=1;j<=y;j++){ cin>>a[i][j]; } } cin>>c>>d; for(int i=1;i<=x;i++){ for(int j=1;j<=y;j++){ b[i][j]=a[i][j]; } } for(int i=1;i<=x;i++){ for(int j=1;j<=y;j++){ if(j==d){ a[i][j]=b[i][c]; } if(j==c){ a[i][j]=b[i][]; } } } for(int i=1;i<=x;i++){ for(int j=1;j<=y;j++){ cout<<a[i][j]<<" "; } cout<<endl; } return 0; }