蓝桥杯 算法提高 9-1九宫格

问题描述
  九宫格。输入1-9这9个数字的一种任意排序,构成3*3二维数组。如果每行、每列以及对角线之和都相等,打印1。否则打印0。
样例输出
与上面的样例输入对应的输出。
例:

数据规模和约定
  输入1-9这9个数字的一种任意排序。

#include <iostream>
#include <string>
using namespace std;


int main() {
    int a[4][4];
    for (int i = 0; i < 3; i++) {
        for (int j = 0; j < 3; j++) {
            cin >> a[i][j];
        }
    }
    int t = a[0][0] + a[0][1] + a[0][2];
    if (a[1][0] + a[1][1] + a[1][2] ==t&& a[2][0] + a[2][1] + a[2][2] == t&& a[0][0] + a[1][0] + a[2][0] == t&& a[0][1] + a[1][1] + a[2][1] == t&& a[0][2] + a[1][2] + a[2][2] == t&& a[0][0] + a[1][1] + a[2][2] == t&& a[0][2] + a[1][1] + a[2][0])
        cout << 1;
    else
        cout << 0;
    cin >> a[3][3];
    return 0;
}
    原文作者:九宫格问题
    原文地址: https://blog.csdn.net/zengjingchao/article/details/78726660
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞