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

HDU 2091 空心三角形 --- 水题

时间:2015-12-22 06:29:21      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

 

技术分享
/* HDU 2091 空心三角形 --- 水题 */
#include <cstdio>

int main()
{
    int kase = 0;
    char ch;
    int h, t; //h表示高
    while (scanf("%c", &ch) == 1 && ch != @){
        scanf("%d", &h);
        if (kase++){
            printf("\n");
        }
        getchar();
        if (h == 1){
            //注意1的时候特殊处理
            printf("%c\n", ch);
            continue;
        }
            
        //第一行
        for (int i = 0; i < h - 1; ++i)
            printf(" ");
        printf("%c\n", ch);
        //2 - h-1行
        for (int i = 2; i < h; ++i){
            //n-i个空
            t = h - i;
            for (int j = 0; j < t; ++j)
                printf(" ");
            printf("%c", ch);
            //2(i-2)+1个空
            t = 2 * (i - 2) + 1;
            for (int j = 0; j < t; ++j){
                printf(" ");
            }
            printf("%c\n", ch);
        }
        //n行
        t = 2 * h - 1;
        for (int i = 0; i < t; ++i)
            printf("%c", ch);
        printf("\n");
    }

    return 0;
}
View Code

 

HDU 2091 空心三角形 --- 水题

标签:

原文地址:http://www.cnblogs.com/tommychok/p/5065451.html

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