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

TOP

返回列表