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