发布网友 发布时间:2022-04-24 18:50
共2个回答
热心网友 时间:2023-11-03 20:26
#include <iostream>
using namespace std;
void cll();
void cxx();
int main()
{
cout << "Three blind mice" << endl;
cll();
cxx();
return 0;
}
void cll()
{
cout << "Three blind mice" << endl;
}
void cxx()
{
cout<<"See how they run"<<endl;
cout<<"See how they run"<<endl;
}
这样就可以了,因为该题目中自定义的函数不需要返回值,所以用void而不用int,也没有return语句。
输出结果:
热心网友 时间:2023-11-03 20:26
#include <iostream>
using namespace std;
void cll();
void cxx();
int main()
{
cout << "Three blind mice" << endl;
cll();
cxx();
return 0;
}
void cll()
{
cout << "Three blind mice" << endl;
}
void cxx()
{
cout<<"See how they run"<<endl;
cout<<"See how they run"<<endl;
}
这样就可以了,因为该题目中自定义的函数不需要返回值,所以用void而不用int,也没有return语句。
输出结果:
热心网友 时间:2023-11-03 20:27
#include <iostream>热心网友 时间:2023-11-03 20:26
#include <iostream>
using namespace std;
void cll();
void cxx();
int main()
{
cout << "Three blind mice" << endl;
cll();
cxx();
return 0;
}
void cll()
{
cout << "Three blind mice" << endl;
}
void cxx()
{
cout<<"See how they run"<<endl;
cout<<"See how they run"<<endl;
}
这样就可以了,因为该题目中自定义的函数不需要返回值,所以用void而不用int,也没有return语句。
输出结果:
热心网友 时间:2023-11-03 20:27
#include <iostream>热心网友 时间:2023-11-03 20:27
#include <iostream>