提交时间:2019-12-20 18:25:43
运行 ID: 3557
#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; }