You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
366 B

package class031;
public class Code01_SwapWithoutTmp {
public static void main(String[] args) {
int test1 = 23;
int test2 = 15;
System.out.println(test1 ^ test2);
int a = -111;
int b = 343242111;
System.out.println(a);
System.out.println(b);
a = a ^ b;
b = a ^ b;
a = a ^ b;
System.out.println(a);
System.out.println(b);
}
}