문자열 돌리기(toCharArray)

Psj·2024년 12월 11일
0

코딩테스트

목록 보기
4/12

내 풀이

public class Solution {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String a = sc.next();
        
        char[] charArr = a.toCharArray();
        
        for(char word : charArr){
            System.out.println(word);
        }
    }
}
profile
Software Developer

0개의 댓글