swap two variables in java in single line code example
Example: swap two variables in java in single line
// swap two variables in java in single line
public class SwapTwoVariablesInOneLine
{
public static void main(String[] args)
{
int x = 23;
int y = 75;
System.out.println("Before swapping two numbers: x = " + x + " y = " + y);
x = x ^ y ^ (y = x);
System.out.println("After swapping two numbers: x = " + x + " y = " + y);
}
}