// 4,交换两个整型变量的值 2017-08-26 本文已影响0人 阿狸演绎 int a = 1,b = 8,c = 0; c = a; a = b; b = c; System.out.println(a); System.out.println(b);