码迷,mamicode.com
首页 > 其他好文 > 详细

杭电2052

时间:2014-09-28 10:02:31      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   for   sp   div   c   log   

#include<stdio.h>
int main()
{
    int a,b,i,j;
    while(scanf("%d %d",&a,&b)!=EOF)
    {
        for(i=0;i<b+2;i++)
        {
            if(i==0||i==b+1)
            {
                printf("+");
                
                for(j=0;j<a;j++)
                {
                    printf("-");
                }
                printf("+");
                printf("\n");

            }
            else
            {
                printf("|");

                for(j=0;j<a;j++)
                    printf(" ");
                printf("|");
                printf("\n");

            }
        }
        printf("\n");
    }
}

 

杭电2052

标签:style   blog   color   io   for   sp   div   c   log   

原文地址:http://www.cnblogs.com/wuyuewoniu/p/3997604.html

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