BOJ 11721 열 개씩 끊어 출력하기

Jmnote (토론 | 기여)님의 2018년 7월 26일 (목) 17:22 판

1 개요

BOJ 11721 열 개씩 끊어 출력하기

[[분류:BOJ {{{단계}}}단계]]

  • 주어진 글자를 10글자씩 나눠 출력하는 문제
  • 알고리즘 분류: 출력

2 Java

import java.util.*;
public class Main {
    public static void main(String args[]) {
        Scanner sc = new Scanner(System.in);
        String str = sc.next();
        for (int i=0; i<str.length(); i+=10) {
            System.out.println( str.substring(i, Math.min(i+10, str.length())) );
        }
    }
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}