1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #include <stdio.h> int main(void) { int a = 100; int b = 200; int tmp; tmp = a; // ¨ç a = b; // ¨è b = tmp; return 0; } | cs |