C++ | 函数 | 函数的声明和调用

#include 
using namespace std;
int jie(int n);//此为函数原型,即对函数的声明.好比数学中的y(x),你要提前告诉电脑"我要搞一个关于x的函数,这个函数叫y.注意声明数据类型
int he(int n);
int main()
{
	int i, m, n;
	cin >> n;
	i = jie(n);  //一切如常,只是多了个自定义函数,不要担心红色下划线,声明完函数会自动消失
	m = he(n);
	cout <<"阶乘为"<< i<
用引用的办法,输入两个数,输出两个数

#include 
using namespace std;
void fun(int a, int b, int &small,int &big);
int main()
{
	int a, b,small,big;
	cin >> a >> b;
	fun(a, b, small, big);
	cout << "small=" << small< b)
	{
		big = a; small = b;
	}
	else if (a < b)
	{
		big = b; small = a;
	}
	else
	{
		big = small = a;
	}
}


你可能感兴趣的:(C++ | 函数 | 函数的声明和调用)