1 条题解
-
0117爱好者 (mengqingyu) LV 10 @ 2024-7-29 15:38:52
#include <iostream> using namespace std; int main() { int a[10][10]; for(int i = 1 ; i <= 5 ; i++) for(int j = 1 ; j <= 5 ; j++) cin >> a[i][j]; int n,m; cin >> n >> m; for(int i = 1 ; i <= 5 ; i++) { for(int j = 1 ; j <= 5 ; j++) { int x = a[i][j]; if(i == n) x = a[m][j]; else if(i == m) x = a[n][j]; cout << x << " "; } cout << endl; } }
- 1
信息
- ID
- 1057
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 3
- 标签
- 递交数
- 31
- 已通过
- 19
- 上传者