对于那些不熟悉经典幻方算法的人:幻方是一个二维数组 (nxn),其中包含每个位置的值 1 和 n^2 之间的数值。每个值可能只出现一次。此外,每行、每列和对角线的总和必须相同。输入应该是奇数,因为我正在编写奇数幻方解决方案。
我已经完成了这个问题,但到目前为止它有一个未知的错误(逻辑?输出?),过去一个小时一直困扰着我。输出的值非常偏离标记。任何帮助将不胜感激:
#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
int n;
cout<< "Please enter an odd integer: ";
cin>>n;
int MagicSquare[n][n];
int newRow,
newCol;
// Set the indices for the middle of the bottom i
int i =0 ;
int j= n / 2;
// Fill each element of the array using the magic array
for ( int value = 1; value <= n*n; value++ )
{
MagicSquare[i][j] = value;
// Find the next cell, wrapping around if necessary.
newRow = (i + 1) % n;
newCol = (j + 1) % n;
// If the cell is empty, remember those indices for the
// next assignment.
if ( MagicSquare[newRow][newCol] == 0 )
{
i = newRow;
j = newCol;
}
else
{
// The cell was full. Use the cell above the previous one.
i = (i - 1 + n) % n;
}
}
for(int x=0; x<n; x++)
{
for(int y=0; y<n; y++)
cout << MagicSquare[x][y]<<" ";
cout << endl;
}
}