"BOJ 11721 열 개씩 끊어 출력하기"의 두 판 사이의 차이

잔글 (봇: BOJ Java 제거)
1번째 줄: 1번째 줄:
[[분류:BOJ 3단계|11]]
==개요==
==개요==
* {{BOJ|11721}}
* {{BOJ|11721}}
* 주어진 글자를 10글자씩 나눠 출력하는 문제
* 알고리즘 분류: 출력
* 알고리즘 분류: 출력


16번째 줄: 18번째 줄:
}
}
</source>
</source>
[[분류:BOJ 3단계]]

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 }}