编写printchs函数

/* 
*Copyright (c) 2013 ,烟台大学计算机学院 
*All rights reserved. 
*作者:张凤宁
*完成日期:2013年11月5日
*版本号:v1.0 
*问题描述:根据main函数中对printchs函数的调用,以及printchs的功能要求。
*样例输入: 
*样例输出:
*问题分析:用简单的方法,学会活学活用 
*/ 

//调用函数printchs输出星号图
#include <iostream>
using namespace std;
//在下面写printchs函数的定义,功能是输出一行若干个指定字符
 void printchs (int m,char ch)
 {
  for (int j=1;j<=m;++j)
  cout<<ch;
 }
int main( )
{
  int n=6; //n代表要输出的行数
  int i;
  //通过在下面的循环里调用printchs函数
  for(i=1; i<=n; ++i)
  {
    printchs(n-i,' ');
    printchs(2*i-1,'*') ;
    cout<<endl;
  }
  return 0;
}
运行结果:

编写printchs函数_第1张图片

你可能感兴趣的:(编写printchs函数)