返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void swap(int *, int *);
  5. int main()
  6. {
  7.     int x=10, y=5, tmp;
  8.     cout<<"[對調前]"<<endl;
  9.     cout<<"x="<<x<<endl;
  10.     cout<<"y="<<y<<endl;
  11.     cout<<"變數x的位址: "<<&x<<endl;
  12.     cout<<"變數y的位址: "<<&y<<endl;
  13.     swap(&x,&y);
  14.     cout<<"[對調後]"<<endl;
  15.     cout<<"x="<<x<<endl;
  16.     cout<<"y="<<y<<endl;
  17.     cout<<"變數x的位址: "<<&y<<endl;
  18.     cout<<"變數y的位址: "<<&x<<endl;
  19.     system("pause");  
  20.     return 0;        
  21. }
  22. void swap(int*a, int*b)
  23. {
  24.    int tmp;
  25.    tmp=*a;
  26.    *a=*b;
  27.    *b=tmp;     
  28. }
複製代碼

TOP

返回列表