#include<iostream.h>
using namespace std
void swap(int &x,int &y); //函式宣告
{
int a,b;
cin>>a>>b;
cout<<"交換前 a ="<<a<<"; 交換前b="<<b<<endl;
swap(a,b);
cout<<"交換後 a ="<<a<<"; 交換後b="<<b<<endl;
}
void swap(int &x,int &y) //函式實現,或子函式
int index;
index=x;
x=y;
y=index;
#include<iostream.h>
using namespace std
void swap(int &x,int &y); //函式宣告
{
int a,b;
cin>>a>>b;
cout<<"交換前 a ="<<a<<"; 交換前b="<<b<<endl;
swap(a,b);
cout<<"交換後 a ="<<a<<"; 交換後b="<<b<<endl;
}
void swap(int &x,int &y) //函式實現,或子函式
{
int index;
index=x;
x=y;
y=index;
}