临时变量void swap(int *x, int *y){ int temp; temp = *x; *x = *y; *y = temp;}算术法a = a + b;b = a - b; /* 此时 b...