美文网首页
UVA1585 (Score)

UVA1585 (Score)

作者: Gaolex | 来源:发表于2016-05-10 13:47 被阅读153次
UVA1585 Score
//此版本只支持一组数据输入
#include <stdio.h>
#define maxn 85
int main()
{
    int scores = 0;
    char c;
    int serial = 0;
    while (scanf_s("%c",&c))
    {
        if (c == 'O')
        {
            serial++;
            scores += serial;
        }
        else
            serial=0;
        continue;
    }
    printf("得分为:%d", scores);
    system("pause");
    return 0;
}
运行结果

相关文章

网友评论

      本文标题:UVA1585 (Score)

      本文链接:https://www.haomeiwen.com/subject/ellyrttx.html