#include <iostream>
using namespace std;
void swap(int x,int y);
int main() {
int a=11,b=22;
//int *m, *n;
swap(a,b);
cout <<&a<<','<<&b<<'\n';
cout <<&b-&a;
}
void swap(int x,int y){
int temp;
temp=x;
x=y;
y=temp;
cout<<&x<<','<<&y<<','<<&temp<<'\n';
cout<<&y-&x<<','<<dec<<&temp-&y<<','<<'\n';
}
输出的进制是多少的,
0x62fe20,0x62fe28,0x62fdfc
2,-11,
0x62fe4c,0x62fe48
-1