백준 11721번 문제풀이



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include<iostream>
 
using namespace std;
 
int main()
{
    char input;
    int count = 0;
 
    while (1)
    {
        cin.get(input);
        count++;
        cout << input;
        if (count == 10)
        {
            cout << endl;
            count = 0;
        }
        if (input == '\n')
        {
            break;
        }
    }
}
cs



+ Recent posts