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

C#编程

开发平台:

Visual C++

  1. //**********************
  2. //**    ch8_12.cpp    **
  3. //**********************
  4. #include <iostream.h>
  5. void swap(int,int);
  6. void main()
  7. {
  8.   int a=3, b=8;
  9.   cout <<"a=" <<a <<", b=" <<b <<endl;
  10.   swap(a,b);
  11.   cout <<"after swapping...n";
  12.   cout <<"a=" <<a <<", b=" <<b <<endl;
  13. }
  14. void swap(int x,int y)
  15. {
  16.   int temp=x;        //交换两个形参
  17.   x=y;
  18.   y=temp;
  19. }