本帖最後由 tonyh 於 2014-9-13 17:31 編輯
利用指標法 (變更門牌), 將變數x與變數y的值對調.
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int x=10, y=5;
- int *xPtr=&x, *yPtr=&y; //宣告指標xPtr與yPtr,同時將x與y的位址指派給它們
- cout<<"[對調前]"<<endl;
- cout<<"x="<<*xPtr<<endl;
- cout<<"y="<<*yPtr<<endl;
- cout<<"變數x的位址: "<<xPtr<<endl;
- cout<<"變數y的位址: "<<yPtr<<endl<<endl;
- xPtr=&y;
- yPtr=&x;
- cout<<"[對調後]"<<endl;
- cout<<"x="<<*xPtr<<endl;
- cout<<"y="<<*yPtr<<endl;
- cout<<"變數x的位址: "<<xPtr<<endl;
- cout<<"變數y的位址: "<<yPtr<<endl<<endl;
- system("pause");
- return 0;
- }
複製代碼 |