Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
3334 | 李思贤 | 数组元素对调 | C++ | 通过 | 100 | 2 MS | 320 KB | 538 | 2019-12-15 19:43:17 |
#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][d]; } } } for(int i=1;i<=x;i++){ for(int j=1;j<=y;j++){ cout<<a[i][j]<<" "; } cout<<endl; } return 0; }