- #include<iostream>
- #include<cstdlib>
- using namespace std;
- void tmm(int*,int*);
- int main()
- {
- int x=10, y=5;
- cout<<"[對調前]"<<endl;
- cout<<"x="<<x<<endl;
- cout<<"y="<<y<<endl;
- cout<<"變數x的位址: "<<&x<<endl;
- cout<<"變數y的位址: "<<&y<<endl<<endl;
- tmm(&x,&y);
- cout<<"[對調後]"<<endl;
- cout<<"x="<<x<<endl;
- cout<<"y="<<y<<endl;
- cout<<"變數x的位址: "<<&x<<endl;
- cout<<"變數y的位址: "<<&y<<endl<<endl;
- system("pause");
- return 0;
- }
- void tmm(int*a,int*b)
- {
- int tmp;
- tmp=*a;
- *a=*b;
- *b=tmp;
-
- }
-
複製代碼 |