没注释的源代码
#include <iostream>
using namespace std;
int he(int x,int y);
int main()
{
int a,b;
cout<<"请输入两个两位数的正整数:";
cin>>a>>b;
cout<<"合并结果为:"<<he(a,b);
return 0;
}
int he(int x,int y)
{
int q,w,e,r;
q=x/10;
w=x%10;
e=y/10;
r=y%10;
return q*1000+r*100+e*10+w;
}