Updated:

1. 문제 링크

https://www.acmicpc.net/problem/11721

2. 사용 알고리즘

구현

3. 풀이

문자를 하나씩 출력하며 열 번째 문자 출력 후 개행

4. 소스 코드

4-1. C++

https://github.com/dev-aiden/problem-solving/blob/main/boj/11721.cpp

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <iostream>

using namespace std;

int main(void) {
    ios_base::sync_with_stdio(false);
    string s; cin >> s;
    int len = s.length();
    int i = 0;
    while (i < len) {
        cout << s[i];
        if (i % 10 == 9) cout << '\n';
        ++i;
    }
    return 0;
}

4-2. JAVA

https://github.com/dev-aiden/problem-solving/blob/main/boj/11721.java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String s = br.readLine();
        int len = s.length();
        int i = 0;
        while(i < len) {
            System.out.print(s.charAt(i));
            if(i % 10 == 9) System.out.println();
            ++i;
        }
    }
}

Updated:

Leave a comment