#30228: c++ 紀錄


jojojo22845@gmail.com (lu)

學校 : 國立臺灣大學
編號 : 190663
來源 : [140.112.229.2]
最後登入時間 :
2023-06-07 10:38:04
a011. 00494 - Kindergarten Counting Game -- UVa494 | From: [114.33.199.76] | 發表日期 : 2022-05-09 11:15

#include<iostream>
#include<cstring>
#include<cctype>
using namespace std;
 

 

int main(){
  string n;
  while(getline(cin, n)){
    int count = 0;
 
    for(int i = 1; i < n.length(); i++){
      if((!isalpha(n[i])) && isalpha(n[i-1])){
        count++;
     }
   }
    if(isalpha(n[n.length() - 1])){
      count++;
    }
    cout << count << "\n";

 

}
}
 
ZeroJudge Forum