풀이

 

import java.util.Scanner;

public class Solution {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);    
        String a = sc.next();
        for(String s : a.split("")) {
            System.out.println(s);
        }
    }
}

 

 

String 문자열을 a라는 변수에 할당하고

split 함수로 하나씩 분리하여 s라는 for문의 임시변수에 할당해 출력

 

 

+ Recent posts