交换两个数的函数
如果这样写,对吗?
#include〈iostream〉
using namespace std;
void fun(int a,int y)
{
int c=0;
c=a;
a=b;
b=c;
}
int main(void)
{
int x=10;
int y=20;
cout<<x<<','<<y<<endl;
fun(x,y);
cout<<x<<','<<y<<endl;
system("pause");
return 0;
}
如果这样写,对吗?
#include〈iostream〉
using namespace std;
void fun(int a,int y)
{
int c=0;
c=a;
a=b;
b=c;
}
int main(void)
{
int x=10;
int y=20;
cout<<x<<','<<y<<endl;
fun(x,y);
cout<<x<<','<<y<<endl;
system("pause");
return 0;
}
2016-08-23
举报