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

倒立三角形

时间:2017-11-12 14:53:23      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:while   stdin   image   个数   images   int   std   open   http   

#include<stdio.h>
int main()
{
    int n;
    int i,j,k;
    freopen("in.txt","r",stdin);
    freopen("out.txt","w",stdout);
    while(scanf("%d",&n)!=EOF)
    for(i=1;i<=n;i++)//行的循环
    {
        for(j=1;j<i;j++)//每行的空格数
        printf(" ");
        for(k=i;k<=2*n-i;k++)//每行的"#"的个数
        {
            printf("#");
        }
        printf("\n");
    }
    return 0;
}  

技术分享

倒立三角形

标签:while   stdin   image   个数   images   int   std   open   http   

原文地址:http://www.cnblogs.com/2228212230qq/p/7821511.html

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