码迷,mamicode.com
首页 > 编程语言 > 详细

Problem D: 零起点学算法95——弓型矩阵

时间:2018-11-30 11:24:05      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:eof   include   scanf   main   for   \n   span   str   起点   

#include<stdio.h>
#include<string.h>
int main()
{
    int n,m,a[20][20];
    while(scanf("%d%d",&n,&m)!=EOF)
    {
        
        int t,i,j;
        t=a[i=0][j=0]=1;
        while(t<n*m)
        {
            while(j+1<m)
              a[i][++j]=++t;  
              a[++i][j]=++t;
            while(j-1>=0)
              a[i][--j]=++t;
              a[++i][j]=++t;
        }
        
        for(int i=0;i<n;i++)
        {
            for(int j=0;j<m-1;j++)
            {
                printf("%2d ",a[i][j]);
            }
            printf("%2d\n",a[i][m-1]);
        }
    }
    
    return 0;
}

 

Problem D: 零起点学算法95——弓型矩阵

标签:eof   include   scanf   main   for   \n   span   str   起点   

原文地址:https://www.cnblogs.com/chenlong991223/p/10042223.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!