반응형
#include<iostream>
#include<stdio.h>
#include<string.h>
using namespace std;
int main()
{
char s[101];
cin >> s;
int len = strlen(s);
for (int i = 0; i < len; i++)
{
if (i != 0 && i % 10 == 0) cout << endl;
cout << s[i];
}
}
반응형
'🧩PS > 🥈Nomal' 카테고리의 다른 글
[C/C++] 백준 11053번 - 가장 긴 증가하는 부분 수열 (LIS) (0) | 2020.11.26 |
---|---|
[C/C++] 백준 2156번 - 포도주 시식(DP) (0) | 2020.11.25 |
[C/C++] 백준 10844번 - 쉬운 계단 수(DP) (0) | 2020.11.22 |
[C/C++] 백준 1932번 - 정수 삼각형(DP) (0) | 2020.11.22 |
[C/C++] 백준 1149번 - RGB거리(DP) (0) | 2020.11.01 |