首页 新闻 会员 周边
3
回答数

待解决问题 5 关于交换两个变量的值问题,,

void swap_int(int*a,int*b) { int temp=*a; *a=*b; *b=temp; } void swap_str_yinyong(int& a,int&b) { in