C++ primer plus 第六版课后作业和题——第二章第三题

*题目:编写一个C++程序,它要求使用3个自定义函数(包括main()函数)
并生成下面的输出:
Three blind mice
Three blind mice
See how they run
See how they run
其中一个函数要调用两次,该函数生成前两行,另一个生成后两行*/
#include
using namespace std;


void show1()
{
cout << "Three blind mice" << endl;
}


void show2()
{
cout << "See how they run" << endl;
}






int main()
{
show1();
show1();
show2();
show2();
system("pause");
return 0;
}

你可能感兴趣的:(Primer,Plus,作业)