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-函数调用的常见样式的主要内容,如果未能解决你的问题,请参考以下文章

C++基础入门丨6. 函数——定义调用和声明

C++基础入门丨6. 函数——定义调用和声明

初识C++之函数

C++中STL学习笔记——常见算法操作演示

C++中STL学习笔记——常见算法操作演示

20180503 jq学习记录(jquery操作样式表,时间片,jq对象函数间传递)