Daily coding

Java Basic : day 1 - Example 02 - swapping 본문

Language/Java_basic

Java Basic : day 1 - Example 02 - swapping

sunnnkim 2019. 11. 19. 00:33

// swap (교환)

// sorting(정렬)을 배우기 위해 필요한 개념임

 

 

int a, b;

a = 11;

b = 22;

// b=a;

// 이러면 b의 원래 값이 사라짐

 

int temp;

// 임시 저장공간에 대한 변수 temp를 만들어 둠 ( = buffer)

temp = a;

a = b;

b = temp;

 

// 과제 5번

Scanner sc = new Scanner(System.in);

System.out.print("x : ");

int x = sc.nextInt();

System.out.print("y : ");

int y = sc.nextInt();

// System.out.println("* x, y 값 바꾸기 *");

int temp1 = x;

x = y;

y = temp1;

System.out.println("x : " + x + ", y = " + y);