首页 编程C/C++函数参数的传递

函数参数的传递

#include <iostream>
using namespace std;
void show(int a,int b)   //a和b是形式参数
{
 cout<<a+b<<endl;
}
void main()
{
 int a=3,b=4;
 show(a,b);
}
//也可以把a和b换成别的名字

#include <iostream>
using namespace std;
void show(int x,int y)  
{
 cout<<x+y<<endl;
}
void main()
{
 int a=3,b=4;
 show(a,b);
}

也可以由用户来输入两个数:

#include <iostream>
using namespace std;
void show(int x,int y)  
{
 cout<<x+y<<endl;
}
void main()
{
 int a,b;
 cout<<“请输入两个整数:”;
 cin>>a;
 cin>>b;
 show(a,b);
}