#include <iostream>
using namespace std;
const int MAXN = 10;
int a[MAXN][MAXN] = {0};
int main()
{
int n, x, y, tot;
cin >> n;
tot = a[x=0][y=n-1] = 1;
while (tot < n*n)
{
while (x + 1 < n && !a[x + 1][y]){ a[++x][y] = ++tot; }
while (y - 1 >= 0 && !a[x][y - 1]){ a[x][--y] = ++tot; }
while (x - 1 >= 0 && !a[x - 1][y]){ a[--x][y] = ++tot; }
while (y + 1 < n && !a[x][y + 1]){ a[x][++y] = ++tot; }
}
for (x = 0; x < n; ++x)
{
for (y = 0; y < n; ++y)
{
printf("%3d", a[x][y]);
}
printf("\n");
}
return 0;
}
刘汝佳 黑书 蛇形填数
最新推荐文章于 2023-07-02 11:46:11 发布