ex25.cpp
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #include <iostream.h>
  2. void swap(int *p1,int *p2) //函数定义
  3. {
  4. int t;
  5. t=*p1;
  6. *p1=*p2;
  7. *p2=t;
  8. }
  9. void main()
  10. {
  11. int x=3,y=4;
  12. swap(&x,&y); //取x和y的地址,分别赋值给p1和p2
  13. cout<<"x="<<x<<endl; //输出4
  14. cout<<"y="<<y<<endl; //输出3
  15. }