第11周项目1-函数版星号图

编号及代码:

/*

*Copyright(c)2014.烟台大学计算机学院

*All rights reserved

*文件名:frist .cpp

*作者:范星月

*完成日期:2014年11月6日

*版本号:v1.0

*问题输出:函数版星号图

*输入描述:

*程序输出:函数版星号图

*/

#include <iostream>

using namespace std;
int i;
void  printstars (int m)//定义能输出一行m个星号的函数
{
    for (int j=1;j<=m;++j)
        cout <<'*';
}

int main()
{
    int n=6;//n代表要输出的行数
    for (i=1;i<=n;++i)
    {
        printstars (2*i-1);
        cout <<endl ;
    }


    return 0;
}


运行结果:

学习总结:第一次用函数版的星号图

学习心得:加油吧!

 

你可能感兴趣的:(第11周项目1-函数版星号图)