public static void main(String[] args) { int a = 3; int b = 5; System.out.println(String.format("a: %d, b: %d", a, b)); // a: 3, b: 5 } 만약 이렇게 a가 3이고 b가 5인 변수에서 a와 b의 값을 스왑하기 위해서 어떻게 해야 할까요? temp 변수 사용하기 public static void main(String[] args) { int a = 3; int b = 5; int temp = a; a = b; b = temp; System.out.println(String.format("a: %d, b: %d", a, b)); // a: 5, b: 3 } 보통은 이렇게 temp 변수를 두고 1. temp..