B. Little Elephant and Magic Square time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output Little Elephant loves magic squares very much
我们这个实验目的是实现大于2的奇数的n阶幻方 根据上述的例子我们可以看到一些规律,显示1放在最上方中间的位置,然后向右上方延申,在达到n这个数字时,停止延申,然后在n的下方开始n+1的新一轮延申。明白了原理之后就很容易使用代码实现这个实验了。 #include <iostream>using namespace std;int main(){int n, i = 0, j = 0, k