#include "头文件.h" //函数的定义 void shen (int a, int b) { int lin = a; a = b; b = lin; cout << "a= " << a <<endl; cout << "b= " << b << endl; }