文章
2
粉丝
324
获赞
0
访问
18.4k
#include <iostream>
#include <cmath>
#include <cstring>
using namespace std;
int main()
{
int row, col, k, temp;
cin >> row >> col >> k;
int in[100][100];
int out[100][100];
int order[100];
for(int i = 0; i < row; i++){
for(int j = 0; j < col; j++){cin >> in[i][j];}
}
for(int i = 0; i < k; i++){
cin >> order[i];}
for(int m = 0; m < k; m++){
//顺时针旋转90
if(order[m] == 1){
for(int i = 0; i < row; i++){
for(int j = 0; j < col; j++){
out[j][row-1-i] = in[i][j];
...
登录后发布评论
会不会是多组输入的原因