#include<iostream>
#include<stdio.h>
using namespace std;
#include<string.h>
const int max0=20;
int a[max0][max0];
int main()
{
int n,x,y,tot=0;
cin>>n;
memset(a,0,sizeof(a));
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("%-4d",a[x][y]);
cout<<endl;
}
return 0;
}
蛇形填空
最新推荐文章于 2022-11-10 23:42:23 发布