首页 > 学院 > 开发设计 > 正文

Uva 1585 score

2019-11-06 06:14:43
字体:
来源:转载
供稿:网友
#include <stdio.h>#include <string.h>#define maxn 80int main(){ int T; char s[maxn]; scanf("%d",&T); while(T--){ int score=0,tag=0; scanf("%s",s); int n=strlen(s); for(int i=0;i<n;i++){ if(s[i]=='O'){ tag++; score+=tag; }else if(s[i]=='X'){ tag=0; } } PRintf("%d/n",score); } return 0;}

刚学C就可以写的题0.0


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表