总时间限制: 1000ms 内存限制: 65536kB
描述
编写一个函数,输入参数是55的二维数组,和n,m两个行下标。功能:判断n,m是否在数组范围内,如果不在,则返回0;如果在范围内,则将n行和m行交换,并返回1。
在main函数中, 生成一个55的矩阵,输入矩阵数据,并输入n,m的值。调用前面的函数。如果返回值为0,输出error。如果返回值为1,输出交换n,m后的新矩阵。
输入
5*5矩阵的数据,以及n和m的值。
输出
如果不可交换,则输出error;
如果可交换,则输出新矩阵
样例输入
1 2 2 1 2
5 6 7 8 3
9 3 0 5 3
7 2 1 4 6
3 0 8 2 4
0 4
样例输出
3 0 8 2 4
5 6 7 8 3
9 3 0 5 3
7 2 1 4 6
1 2 2 1 2
提示
不需要用while循环来反复读取文件中的测试集。
输出error格式如下:
cout<< “error” << endl;
输出矩阵格式如下:
cout<< setw(4)<< num;
输出矩阵一行后要输出cout<< endl;
Code
C++
#include <iostream>
#include <stdio.h>
#include <bits/stdc++.h>
using namespace std;
bool canRead(int n, int m) {
if (n >= 0 && n < 5 && m >= 0 && m < 5) return 1;
else {
cout << "error" << endl;
return 0;
}
}
int main() {
array<array<int, 5>, 6> a;
int n, m;
for (int i = 0; i < 5; i++) {
for (int j = 0; j < 5; j++) {
cin >> a[i][j];
}
}
cin >> n >> m;
if (canRead(n, m)) {
for (int i = 0; i < 5; i++) a[5][i] = a[n][i];
for (int i = 0; i < 5; i++) a[n][i] = a[m][i];
for (int i = 0; i < 5; i++) a[m][i] = a[5][i];
for (int i = 0; i < 5; i++) {
for (int j = 0; j < 5; j++) {
cout << setw(4) << a[i][j];
}
cout<< endl;
}
}
}
碎碎念
终于通过了。
泪目了。