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