Monday, May 28, 2018

UVA - 455 .cpp file

#include<bits/stdc++.h>
using namespace std;
int main()
{
    int n,c;
    string s;
    cin>>n;
    getchar();
    while(n--)
    {
        c=0;
        cin>>s;
        for(int i=0; i<s.size(); i++)
            if(isalpha(s[i]))
            {
                if(s[0]==s[i])c++;
            }
        cout<<c-1<<endl;
    }
    return 0;
}

No comments:

Post a Comment