본문 바로가기
백준

[11721] 열 개씩 끊어 출력하기

by Jcoder 2018. 5. 14.


#include <stdio.h>
#include <string.h>
int main()
{
char input[100];
int i,n;
scanf("%s", input);
n = strlen(input);
for (i = 0; i < n; i++)
{
printf("%c", input[i]);
if ((i+1)%10 == 0)
printf("\n");
}
return 0;
}


'백준' 카테고리의 다른 글

[4673] 셀프 넘버  (0) 2018.05.14
[15552] 빠른 A+B  (0) 2018.05.14
[11720] 숫자의 합  (0) 2018.05.14
[8393] 합  (0) 2018.05.14
[1924] 2007년  (0) 2018.05.14