[求助]C++问题1
编写一个C++程序,它使用3个用户定义的函数(包括main()),并生成下面的输出:
Three blind mice
Three blind mice
See how they run
See how they run
其中一个函数要调用两次,该函数生成前两行;另一个函数也被调用两次,并生成其余的输出.
#include <iostream>
using namespace std;
void a(int);
void b(int);
int main()
{
a(1);
a(2);
b(1);
b(2);
cin.get();
cin.get();
return 0;
}
void a(int n)
{
cout <<"Three blind mice\n";
}
void b(int c)
{
cout <<"See how they run\n";
}
我不知道对不对?
请各位大哥指点一下!!
[此贴子已经被作者于2007-5-14 15:39:45编辑过]