[프로그래머스] 문자열 돌리기

금은체리·2023년 10월 26일
0

알고리즘

목록 보기
3/5
import java.util.Scanner;

public class Solution {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String a = sc.next();
        
        int strLength = a.length();
        
        for(int i=0; i<strLength; i++){
            System.out.println(a.charAt(i));
        }
    }
}

.charAt()

문자열.charAt(인덱스) 
  • 특정위치 글자를 뽑을 때

.length()

  • 총 글자 수 알고 싶을 때
profile
전 체리 알러지가 있어요!

0개의 댓글