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.

18 lines
274 B

package class010;
public class Code01_SwapWithoutTmp {
public static void main(String[] args) {
int a = 111;
int b = 111;
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);
}
}