Ch2-9. 변수 값 바꾸기
0. 목차
Chapter2. 변수
Ch2 - 9. 두 변수의 값 바꾸기
Ch2 - 9. 두 변수의 값 바꾸기
▶ x와 y값 바꾸기
▷ x, y
▷ x, y, tmp
▶ 실습
int x = 2, y = 4;
int tmp;
tmp = x;
x = y;
y = tmp;
System.out.println("x = " + x);
System.out.println("y = " + y);
//console
x = 4
y = 2