minstory
백준 11721번: 열 개씩 끊어 출력하기 [C언어] 본문
#include <stdio.h>
#include <string.h>
int main(void)
{
int len=0;
char arr[100];
scanf("%s", arr);
len = strlen(arr);
for (int i = 0; i < len; i++)
{
printf("%c", arr[i]);
if ((i + 1) % 10 == 0)
printf("\n");
}
return 0;
}
'백준 문제풀이 [C언어] > for문' 카테고리의 다른 글
백준 11720번: 숫자의 합 [C언어] _vs는 잘 되는데 백준은 오답처리.. (0) | 2019.05.14 |
---|---|
백준 8393번: 합 [C언어] (0) | 2019.05.12 |
백준 1924번: 2007년 [C언어] (0) | 2019.05.12 |
백준 2441번: 별 찍기-4 [C언어] (0) | 2019.05.12 |
백준 2440번: 별 찍기-3 [C언어] (0) | 2019.05.12 |
Comments