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

白书_倒三角形_C语言描述

时间:2015-01-28 22:36:10      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:

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

 

白书_倒三角形_C语言描述

标签:

原文地址:http://www.cnblogs.com/chz-Indestinee/p/4257263.html

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