主题:[讨论]求一个用户定义的函数C++源码
xubwu
[专家分:0] 发布于 2011-01-21 10:22:00
//编写一个C++程序,它使用3个用户定义的函数(包括main()),并生成下面的输出:
Three blind mice
Three blind mice
See how they run
See how they run
其中一个函数要调用面两次,该函数生成前两行;另一个函数也被调用两次,并生成其佘的输出。
回复列表 (共1个回复)
沙发
xubwu [专家分:0] 发布于 2011-01-26 11:22:00
各位高手进来看下,我把这个问题的源码写出来了不知是否合法,有劳各位大牛指点下谢谢。
//编写一个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";
}
我来回复