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

20.输出图形

时间:2014-08-06 14:13:01      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:os   io   for   ios   ef   return   include   图形   

*

**

***

****

*****

****

***

**

*

 

#include<iostream>
using namespace std;

int main()
{
    for(int i=1;i<=5;i++)
    {
        for(int j=1;j<=i;j++)
        {
            cout<<"*";
        }
        cout<<endl;
    }
    for(int m=4;m>=0;m--)
    {
        for(int n=1;n<=m;n++)
        {
            cout<<"*";
        }
        cout<<endl;
    }
    return 0;
}

20.输出图形,布布扣,bubuko.com

20.输出图形

标签:os   io   for   ios   ef   return   include   图形   

原文地址:http://www.cnblogs.com/jixiaowu/p/3894190.html

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