C++学习-函数的使用4-函数调用的常见样式
Posted 殇堼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++学习-函数的使用4-函数调用的常见样式相关的知识,希望对你有一定的参考价值。
1.无参无返函数调用
#include<iostream>
using namespace std;
//无参无返
void test01() {
cout << "请输入\\n";
}
int main() {
test01();
}
2.有参无返
#include<iostream>
using namespace std;
//有参无返
void test02(int a) {
cout << "请输入a的值\\n"<<a;
}
int main() {
test02(100);
}
3.无参有返
#include<iostream>
using namespace std;
int test03() {
return 1000;
}
int main() {
cout << "请输入a的值\\n"<< test03();
}
4.有参有返
#include<iostream>
using namespace std;
int test04(int a) {
cout << "this is test04 a=" << a;
return a;
}
int main() {
int num = test04(888);
cout << "\\nnum="<< num;
}
以上是关于C++学习-函数的使用4-函数调用的常见样式的主要内容,如果未能解决你的问题,请参考以下文章