Java - Swap two numbers without using temp variable

Опубликовано: 27 Сентябрь 2024
на канале: Legendary Computer Programmer
23
1

Welcome to my channel. Please Subscribe, like and share.
It is greatly appreciated.

#legendaryprogrammer

import java.util.*;
import java.lang.*;

CODE:

class Rextester
{
public static void main(String args[])
{
int x = 10;
int y = 15;

x = x + y; // 25 temp x

y = x - y; // 25 - 15 = 10
x = x - y; // 25 - 10 = 15

System.out.println("x = " + x);
System.out.print("y = " + y);
}
}

END CODE

Are you struggling with coding such as C++, android or java. Look no further. I got you. Compilers are annoying and can drive us mad, wasting hours trying to find the answer that could be a as simple as a comma. That's why I'm here. To save you time and headache. Subscribe to my channel so you can rest easy. Spread the word far and wide that programmers united does not have to worry!

If you have any requests or suggestions, let me know in the comments. Thanks :)