JAVA/codeup 기초 100제

[ CodeUp 기초 100제 JAVA] 1014 / 문자 2개 입력받아 순서 바꿔 출력하기

ucong 2020. 12. 8. 09:34
문제설명
2개의 문자(ASCII CODE)를 입력받아서 순서를 바꿔 출력해보자.

참고
char x, y;
scanf("%c %c", &x, &y);
printf("%c %c", y, x); //출력되는 순서를 작성
입력 출력
A b b A

 

문제풀이
 
1
2
3
4
5
6
7
8
9
10
11
12
import 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();
    }
}