首页 > 其他 > 详细

蛇形填数

时间:2020-12-27 18:08:03      阅读:26      评论:0      收藏:0      [点我收藏+]
#include<stdio.h>
#include<string.h>
int a[30][30];
int main()
{
    int n;
    while(scanf("%d", &n)==1){
        memset(a, 0, sizeof(a));
        int tot=0, x=0, y;
        a[x=0][y=n-1]=tot=1;
        while(tot<n*n){
            while(x<n-1&&!a[x+1][y]) a[++x][y]=++tot;
            while(y>0&&!a[x][y-1]) a[x][--y]=++tot;
            while(x>0&&!a[x-1][y]) a[--x][y]=++tot;
            while(y<n-1&&!a[x][y+1]) a[x][++y]=++tot;
        }
        for(int i=0; i<n; i++){
            for(int j=0; j<n; j++){
                printf("%3d", a[i][j]);
            }
            printf("\n");
        }
    }
    return 0;
}

最关键的一点是while循环中!a[x+1][y]这一判断条件

!语句在最外层循环体现不了作用,但是如果想让数字串“拐弯”就一定要判断!!

蛇形填数

原文:https://www.cnblogs.com/ZGCblogs/p/14197705.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!