编辑代码

#include <iostream>
using namespace std;
#include <头文件.h>

//函数的声明
//void shen (int a , int b);
//函数的定义
//void shen (int a, int b)
//{
//    int lin = a;
//    a = b;
//    b = lin;
//    cout << "a= " << a <<endl;
//    cout << "b= " << b << endl;
//} 

int main()
{
    int a = 100;
    int b = 20;
    shen (a,b);

    system("pause");

    return 0;
}