#28051: CPP 可以看解題報告第二頁easylin0126@gmail.com (林榮翼)的《解題想法》


11030067@mail.hpsh.tp.edu.tw (和平110級鄧雨珊)

學校 : 臺北市立和平高級中學
編號 : 163096
來源 : [61.64.210.174]
最後登入時間 :
2022-10-23 16:54:59
a011. 00494 - Kindergarten Counting Game -- UVa494 | From: [219.85.43.159] | 發表日期 : 2021-11-11 22:46

#include <iostream>
#include <string>
using namespace std;

int main(){
string s;
while (getline(cin, s)){
int n=0, i;
int len=s.length();
for (i=0; i<len; i++){
if (isalpha(s[i])!=0 && isalpha(s[i-1])==0){
n++;
}
}
cout << n <<endl;
}
}
 
ZeroJudge Forum