RootKings 2018-11-11 13:11 采纳率: 100%
浏览 435
已采纳

这个题目搞不清楚,请求大神解答,附自己写的(不知道自己哪里错了)

求蛇形输入方阵
例如:N=4
7 13 14 16
6 8 12 15
2 5 9 11
1 3 4 10

 #include<stdio.h>
int main()
{
    int i,j,k,count,temp,N,n;
    printf("please input N");
    scanf("%d",&N);
    n=N-1;count=1;k=1;j=0;i=n;
    int a[N][N];
    while(count<=N)
    {
        for(temp=0;temp<count;temp++)
        {
            if(count%2!=0)
            {
                a[i--][j--]=k++;
                if(j<0)
                {
                    j=0;
                    continue;

                }
            }
            if(count%2==0)
            {
                a[i++][j++]=k++;
                if(i>n)
                {
                    i=n;
                    continue;
                }

            }
        }
        count++;
    }
    j=n-1;j=n;count=1;
    while(count<N)
    {
        for(temp=0;temp<N-count;temp++)
        {
            if(count%2!=0)
            {
                a[i--][j--]=k++;
                if(i<0)
                {
                    i=0;j+=2;
                    continue;
                }
            }
            if(count%2==0)
            {
                a[i++][j++]=k++;
                if(i>n)
                {
                    j=n;i-=2;
                    continue;
                }
            }
        }
        count++;
    }
    for(i=0;i<N;i++)
    {
        for(j=0;j<N;j++)
        printf("%d   ",a[i][j]);
        printf("\n");
    }
    return 0;
}
  • 写回答

1条回答 默认 最新

  • Italink 2018-11-11 15:44
    关注

    主要是弄完一个角之后,再另一个角的起点判断有问题

     #include<stdio.h>
    int main()
    {
        int i, j, k, count, temp, N, n;
        printf("please input N");
        scanf("%d", &N);
        n = N - 1; count = 1; k = 1; j = 0; i = n;
        int a[10][10];
        while (count <= N)
        {
            for (temp = 0; temp < count; temp++)
            {
                if (count % 2 != 0)
                {
                    a[i--][j--] = k++;
                    if (i < 0)
                        i = 0;
                    if (j < 0)
                        j = 0;
                }
                else if (count % 2 == 0)
                {
                    a[i++][j++] = k++;
                    if (i > n)
                        i = n;
                    if (j > n) 
                        j = n;
    
                }
            }
            count++;
        }
        if (N % 2 != 0)     //输入完一个角之后,起点跟N的奇偶有关
            j++;
        else
            i--;
        count = 1;
        while (count < N)
        {
            for (temp = 0; temp < N - count; temp++)
            {
                if ((N-count) % 2 != 0)
                {
                    a[i--][j--] = k++;
                    if (i < 0) {
                        i = 0;
                        j += 2;
                    }
                }
                if ((N-count) % 2 == 0)
                {
                    a[i++][j++] = k++;
                    if (j > n) {
                        j = n;
                        i -= 2;
                    }
    
                }
            }
            count++;
        }
        for (i = 0; i < N; i++) {
            for (j = 0; j < N; j++)
                printf("%3d   ", a[i][j]);  //设置宽度为3
            printf("\n");
        }   return 0;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。
  • ¥30 c#打开word开启修订并实时显示批注
  • ¥15 如何解决ldsc的这条报错/index error
  • ¥15 VS2022+WDK驱动开发环境
  • ¥30 关于#java#的问题,请各位专家解答!
  • ¥30 vue+element根据数据循环生成多个table,如何实现最后一列 平均分合并
  • ¥20 pcf8563时钟芯片不启振
  • ¥20 pip2.40更新pip2.43时报错
  • ¥15 换yum源但仍然用不了httpd
  • ¥50 C# 使用DEVMOD设置打印机首选项