#9254: 解析參考


simultaneously (----------以上是高手------------)

學校 : 高雄市立新莊高級中學
編號 : 37268
來源 : [1.200.206.195]
最後登入時間 :
2018-12-01 11:50:33
a011. 00494 - Kindergarten Counting Game -- UVa494 | From: [111.254.217.131] | 發表日期 : 2014-09-27 22:47

#include<cstdio>
#include<string.h>
int main(){
    char x[10000];
    while(gets(x)){
      int ans=0,s=strlen(x);
     bool start=false;
     for(int i=0;i<s;i++)
     {if((x[i]>='a'&&x[i]<='z')||(x[i]>='A'&&x[i]<='Z')){
      if(start==false) start=true,ans++;          //如果這個字元是開頭而且是英文字母就加一
       }
     else start=false;    //不是英文字母就當作空白鍵     
      } 
     printf("%d\n",ans);
     }} 

 
ZeroJudge Forum