본문 바로가기

Algorithm

C++(씨쁠쁠)(cplusplus)-백준(baekjoon)(BaekJoon)코딩 11721번:열 개씩 끊어 출력하기 답

반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <iostream>
#include <string>
using namespace std;
int main() {
    string word;
    getline(cin, word);
    for (int i = 0; i < word.size(); i++)
    {
        cout << word[i];
        if ((i+1) % 10 == 0)
        {
            cout << '\n';
        }
    }
}
cs