https://www.acmicpc.net/problem/11721
#include <iostream>
#include <string>
using namespace std;
int main() {
string a;
cin >> a;
for (int i = 0; i < a.size(); i++) {
cout << a[i];
if ((i + 1) % 10 == 0)
cout << "\n";
}
}
'Programming > BaekJoon' 카테고리의 다른 글
[C++] 백준 1094번 : 막대기 (0) | 2019.03.14 |
---|---|
[C++] 백준 2455번 : 지능형 기차 (0) | 2019.03.11 |
[C++] 백준 10409번 : 서버 (0) | 2019.03.06 |
[C++] 백준 1773번 : 폭죽쇼 (0) | 2019.03.06 |
[C++] 백준 1188번 : 음식 평론가 (0) | 2019.03.06 |