码迷,mamicode.com
首页 > 其他好文 > 详细

UVA1585

时间:2016-12-24 16:43:52      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:uva   class   str   for   std   ++   style   pre   span   

#include<stdio.h>
#include<string.h>
int main(){
    int n;
    char s[100];
    scanf("%d",&n);
    for(int j=0;j<n;j++){
        scanf("%s",s);
        int count =0;
        int q=0;
        int p=0;
        int len=strlen(s);
        for(int i=0;i<len;i++){
            if(s[i] == O ){
                q++;
                count += q;
            }
            else if(s[i] == X)
                q=0;
        }
        printf("%d\n",count);
    }
}

 

UVA1585

标签:uva   class   str   for   std   ++   style   pre   span   

原文地址:http://www.cnblogs.com/betterluo/p/6217246.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!