翻转数据

该题是要翻转数据。首先输入一个5 * 5的数组,然后输入一行,这一行有四个数,前两个代表操作类型,后两个数x y代表需操作数据为以x y为左上角的那几个数据。 

 

操作类型有四种: 

1 2 表示:90度,顺时针,翻转4个数 

1 3 表示:90度,顺时针,翻转9个数 

2 2 表示:90度,逆时针,翻转4个数 

2 3 表示:90度,逆时针,翻转9个数 

 

Sample: 

 

Input: 

1 2 3 4 5 

6 7 8 9 10 

11 12 13 14 15 

16 17 18 19 20 

21 22 23 24 25 

1 3 1 1 

 

Output: 

11 6 1 4 5 

12 7 2 9 10 

13 8 3 14 15 

16 17 18 19 20 

21 22 23 24 25 

 

#include<iostream>
using namespace std;

void reverse(int c[5][5], int x, int y, int n, bool rev) {
        for (int i = x-1; i < n; i++) {
            for (int j = y-1; j < n; j++) {
                if (rev == true)
                    c[j][n - i - 1] = c[i][j];
                else
                    c[n - j - 1][i] = c[i][j];
            }
        }
    
}

int main() {
    int a[5][5];
    for (int i = 0; i < 5; i++) {
        for (int j = 0; j < 5; j++) {
            a[i][j]=0;
        }
    }
    int b[4];
    for (int i = 0; i < 5; i++) {
        for (int j = 0; j < 5; j++) {
            cin >> a[i][j];
        }
    }
    for (int j = 0; j < 4; j++) {
        cin >> b[j];
    }
    if (b[0] == 1) {
        if (b[1] == 2)
            reverse(a, b[2], b[3], 2, true);
        else if (b[1] == 3)
            reverse(a, b[2], b[3], 3, true);
        else {
            cout << "操作类型不合法,请重新输入:\n";
            for (int j = 0; j < 4; j++) {
                cin >> b[j];
            }
        }
    }
    else if (b[0] == 2) {
        if (b[1] == 2)
            reverse(a, b[2], b[3], 2, false);
        else if (b[1] == 3)
            reverse(a, b[2], b[3], 3, false);
        else {
            cout << "操作类型不合法,请重新输入:\n";
            for (int j = 0; j < 4; j++) {
                cin >> b[j];
            }
        }
    }
    else {
        cout << "操作类型不合法,请重新输入:\n";
        for (int j = 0; j < 4; j++) {
            cin >> b[j];
        }
    }
    for (int i = 0; i < 5; i++) {
        for (int j = 0; j < 5; j++) {
            cout << a[i][j];
            if (j != 4)
                cout << " ";
        }
        cout << endl;
    }
    return 0;
}

 

转载于:https://www.cnblogs.com/xym4869/p/8657694.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值