문제설명 2개의 문자(ASCII CODE)를 입력받아서 순서를 바꿔 출력해보자. 참고 char x, y; scanf("%c %c", &x, &y); printf("%c %c", y, x); //출력되는 순서를 작성 입력 출력 A b b A 문제풀이 123456789101112import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String a,b; a= sc.next(); b= sc.next(); System.out.printf("%s %s",b,a); sc.close(); }}