不行吧,传值好像不行的,传引用吧void fun(int &a,int &b){int c;c=a;a=b;b=c;}这样应该就可以了。尝试一下吧
void fun(int a,int b){int c;c=a;a=b;b=a;}这样就可以互换了