第11周项目1-4用printchs函数输出学过的星号图

/*

*Copyright (c)2014计算机科学与控制工程学院

*All rights reserved

*文件名称:annpion

*作者:范星月

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

*

*问题描述:用printchs函数输出星号图

*程序输入:无

*程序输出:星号图

*/
#include <iostream>

using namespace std;



void printchs (int a,char b)
{
    int j;
    for (j=1; j<=a; j++)
        cout <<b;
}

int main()
{
    int i;
    int n=8;

    for (i=1; i<=8; i++)
    {
        printchs (n-i,' ');
        printchs (i,'*');
        cout <<endl;
    }

    return 0;
}


运行结果:

学习总结:只会输出简单的星号图

学习心得:加油!!!

你可能感兴趣的:(第11周项目1-4用printchs函数输出学过的星号图)