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

UVa1585 Score

时间:2014-07-26 01:46:56      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   for   art   

bubuko.com,布布扣
#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
int main()
{
    char s[100];
    int i,j,n,ans;
    cin>>n;
    getchar();
    while (n>0)
    {
        n--;
        gets(s);
        ans=0;
        j=0;
        int len=strlen(s);
        for (i=0;i<len;i++)
        {
            if (s[i]==O){
                j++;
                ans+=j;        
            }
            if (s[i]==X)
                j=0;
        }
        cout<<ans<<endl;
    }
}
View Code

 

UVa1585 Score,布布扣,bubuko.com

UVa1585 Score

标签:style   blog   http   color   os   io   for   art   

原文地址:http://www.cnblogs.com/bingolibing/p/3869156.html

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