在之前你是否也是这样交换两个数据的 public static void main(String[] args) {int a=3;int b=5;int c;c=a;a=b;b=c;System.out.println("a= "+a);//5Syste...