回 帖 发 新 帖 刷新版面

主题:[讨论]求一个用户定义的函数C++源码

//编写一个C++程序,它使用3个用户定义的函数(包括main()),并生成下面的输出:
Three blind mice
Three blind mice
See how they run
See how they run
其中一个函数要调用面两次,该函数生成前两行;另一个函数也被调用两次,并生成其佘的输出。

回复列表 (共1个回复)

沙发


各位高手进来看下,我把这个问题的源码写出来了不知是否合法,有劳各位大牛指点下谢谢。

//编写一个C++程序,它使用3个用户定义的函数(包括main()) ,并生成下面的输出:
//Three blind mice 
//Three blind mice
//See how they run
//See how they run
//其中一个函数要调用两次,该函数生成前两行;另一个函数也被调用两次,并生成其余的输出。
//2011.1.26
#include<iostream>
void n_mice();
void n_run();
using namespace std;
int main()
{
    n_mice();
    cout << endl;
    n_mice();
    cout << endl;
    n_run();
    cout << endl;
    n_run();
    cout << endl;
    return 0;
    }
void n_mice()
{
     cout << "Three blind mice";   
     }
void n_run()
{
     cout << "See how they run";
     }     

我来回复

您尚未登录,请登录后再回复。点此登录或注册