#include<iostream>
#include<cmath>
using namespace std;
int main()
{ void swap(int,int);
int a1=3;
int b1=4;
swap(a1,b1);
cout<<a1<<" "<<b1<<endl;
system("pause");
return 0;
}
void swap(int a,int b)
{
int temp;
temp=a;a=b;b=temp;
}
沐风_0008
慕神1223051
慕前端2376507
饮一杯为谁丶
相关分类