Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
44128 | yejiaxiangBMT | 矩阵交换行 | C++ | 通过 | 0 MS | 240 KB | 459 | 2024-03-29 14:56:14 |
#include<iostream> using namespace std; int main() { int a[5][5]; for(int i=0;i<5;i++){ for(int j=0;j<5;j++){ cin>>a[i][j]; } } int m,n; cin>>m>>n; for(int i=0;i<5;i++){ if(i==n-1){ for(int j=0;j<5;j++){ cout<<a[m-1][j]<<" "; } } else if(i==m-1){ for(int j=0;j<5;j++){ cout<<a[n-1][j]<<" "; } } else{ for(int j=0;j<5;j++){ cout<<a[i][j]<<" "; } } cout<<endl; } return 0; }