您的位置:首页 > 其它

uva 494 Kindergarten Counting Game

2017-05-03 12:10 381 查看
题目:统计单词个数,单词定义:连续的字母

注意:用getline读字符串

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<string>
#include<cstdio>
#include<iostream>
#include<math.h>
#include <map>
#include <vector>
#include <algorithm>
#include <sstream>
#include <queue>
using namespace std;
int isletter(char a){
if(a >= 'a' && a <= 'z') return 1;
else if(a >= 'A' && a <= 'Z') return 1;
else return 0;
}
int main()
{
string s;
while(getline(cin,s)){
int length = s.length();
int count = 0;
int flag=0;
for(int i = 0; i < length; i++){
if (isletter(s[i])) {
flag=1;
continue;
}
if(flag)
count++;
flag=0;
}
cout<<count<<endl;
}
return 0;
}
/*
Meep Meep!
I tot I taw a putty tat.
I did! I did! I did taw a putty tat.
Shsssssssssh ... I am hunting wabbits. Heh Heh Heh Heh ...

*/
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: