본문 바로가기
프로그래밍/알고리즘

백준 8958 OX퀴즈

by ILove_NS_MoKa 2019. 9. 3.

 

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
26
27
28
#include <iostream>
#include <string.h>
 
int main()
{
    int size = 0;;
    scanf("%d"&size);
    for (int i = 0; i < size; i++)
    {
        char ox[80];
        int sum = 0;
        int count = 0;
        scanf("%s", ox);
        for (int j = 0; j< strlen(ox); j++)
        {
            if (ox[j] != 'O')
            {
                count = 0;
                continue;
            }
            count++;
            sum += count;
        }
        printf("%d\n", sum);
    }
    return 0;
}
 
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs

'프로그래밍 > 알고리즘' 카테고리의 다른 글

c++ 백분율,퍼센트 계산  (0) 2019.09.03
백준 4344 평균은 넘겠지  (0) 2019.09.03
백준 평균 1546  (0) 2019.09.03
백준 3052 나머지  (0) 2019.09.02
백준 2577 숫자의 개수  (0) 2019.09.02