No Rules Rules

열 개씩 끊어 출력하기 (feat. 백준, 11721번) 본문

생활/코테

열 개씩 끊어 출력하기 (feat. 백준, 11721번)

개발하는 완두콩 2022. 11. 1. 12:52
728x90
반응형

열 개씩 끊어 출력하기
https://www.acmicpc.net/problem/11721

 

11721번: 열 개씩 끊어 출력하기

첫째 줄에 단어가 주어진다. 단어는 알파벳 소문자와 대문자로만 이루어져 있으며, 길이는 100을 넘지 않는다. 길이가 0인 단어는 주어지지 않는다.

www.acmicpc.net

 

// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
using namespace std;
int main() {
	ios::sync_with_stdio(false), cin.tie(NULL);
	string str;
    cin >> str;
    register int cnt = str.size() / 10, idx = 0;
    for(register int i = 0; i <= cnt; ++i){
        for(register int j = 0; j < 10 && idx < str.size(); ++j)
            cout << str.at(idx++);
        cout << "\n";
    }
	return 0;
}
// *&)*@*

 

반응형

단순 연산 문제입니다.

728x90
반응형
Comments