P16.CPP
上传用户:chaiyuqiu
上传日期:2022-08-03
资源大小:27k
文件大小:0k
源码类别:

数据结构

开发平台:

C/C++

  1. #include <iostream.h>
  2. void swap (int &i, int &j);
  3. main() {
  4.     int a = 1, b = 2;
  5.     cout << "a and b:" << a << " " << b << endl;
  6.     swap (a,b);
  7.     cout << "a and b:" << a << " " << b << endl;
  8.     return 0;
  9. }
  10. void swap (int &i, int &j) {
  11.     int t=j;
  12.     j = i;
  13.     i = t;
  14. }