题目:有两个数a,b,只用+,—,使a,b的值互换.
#include<iostream> using namespace std; int main() { int a,b; a=a-b; b=a+b; a=b-a; return 0; }