2013年10月5日 星期六

[UVA] 494 - Kindergarten Counting Game

/*20131005 hanting*/
#include <iostream>
#include <stdio.h>//gets()
#include <string.h>//strlen
using namespace std;

int main()
{
    char wd[1000000];
    while(gets(wd))//讀取字串的每一個字元
    {
        int l,x=0,space=0;
        l=strlen(wd);//wd的長度
        for(int i=0;i<l;i++)
        {
            //判別有多少字串//
            if(wd[i]>='a' && wd[i]<='z'
               || wd[i]>='A' && wd[i]<='Z')
                x=1;
            else
            {
                space=space+x;
                x=0;
            }
        }
        space=space+x;
        cout<<space<<endl;
    }

    return 0;
}

沒有留言:

張貼留言