Pergunta de entrevista da empresa FIS

Swapping of 2 numbers without using third variable

Resposta da entrevista

Sigiloso

24 de jan. de 2020

class demo { public static void main(string arg[]) { System.out.println("Before swapping"); int x = 10; int y = 20; System.out.println("value of x:" + x); System.out.println("value of y:" + y); system.out.println("After swapping"); x = x + y; y = x - y; x = x - y; System.out.println("value of x:" + x); System.out.println("value of y:" + y); } }