Is this your company?
Swap two numbers without using third variable
Anonymous
int x = 10; int y = 20; System.out.println("Before swap:"); System.out.println("x value: "+x); System.out.println("y value: "+y); x = x+y; y=x-y; x=x-y; System.out.println("After swap:"); System.out.println("x value: "+x); System.out.println("y value: "+y);
Check out your Company Bowl for anonymous work chats.