第十一周项目一 (2)根据main函数中对printchs函数的调用,以及printchs的功能要求,编写printchs函数。

 

  1. /* 
  2. * 烟台大学未来工程师协会/CSDN俱乐部 算法达人修炼营 实践报告 
  3. * Copyright (c) 2011, 烟台大学计算机学院学生  
  4. * All rights reserved. 
  5. * 作    者:      牛建伟                         
  6. * 完成日期:    2013     年  11     月  05      日 
  7. * 版 本 号:           vo.1
  8. * 任务描述:根据main函数中对printchs函数的调用,以及printchs的功能要求,编写printchs函数。
  9. 样例输入:       
  10. 样例输出: 
  11. 问题分析:根据main函数中对printchs函数的调用,以及printchs的功能要求,编写printchs函数。
  12. /*
    #include <iostream>
    using namespace std;
    void printchs(int m,char ch)//定义一个能输出m个符号ch的函数
    {
        for(int j=1;j<=m;++j)
        cout<<ch;
    }
    int main( )
    {
      int i;
      //通过在下面的循环里调用printchs函数,输出右面的图
      for(i=1; i<=6; ++i)
      {
        printchs(6-i,' ');
        printchs(2*i-1,'*') ;
        cout<<endl;
      }
      return 0;
    }
    

  13. 操作结果:第十一周项目一 (2)根据main函数中对printchs函数的调用,以及printchs的功能要求,编写printchs函数。_第1张图片

你可能感兴趣的:(第十一周项目一 (2)根据main函数中对printchs函数的调用,以及printchs的功能要求,编写printchs函数。)