ch9_4.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //*********************
  2. //**    ch9_4.cpp    **
  3. //*********************
  4. #include <iostream.h>
  5. void swap(int &x,int &y);
  6. void main()
  7. {
  8.   int x=5, y=6;
  9.   cout <<"before swap, x:" <<x <<" ,y:" <<y <<endl;
  10.   swap(x,y);
  11.   cout <<"after swap, x:" <<x <<" ,y:" <<y <<endl;
  12. }
  13. void swap(int &rx,int &ry)
  14. {
  15.   int temp=rx;  rx=ry;  ry=temp;
  16. }