杭电ACM 第2024题

#include
#include
using namespace std;
void main(){

    int n;
    while(cin>>n){
        int w=0;
        while(n--)
        {
            char s[50];
            if(w==0){
                w=1;
                getchar();
            }
        gets(s);

        bool t=true;
        if(!((s[0]>='a'&&s[0]<='z')||(s[0]>='A'&&s[0]<='Z')||s[0]=='_'))
            t=false;
        else
        for(int i=1;s[i]!='\0';++i){
            if(!((s[i]>='0'&&s[i]<='9')||(s[i]>='a'&&s[i]<='z')||(s[i]>='A'&&s[i]<='Z')||(s[i]=='_')))
            {
                t=false;
                break;
            }
        }
        if(t==false)
            cout<<"no"<<endl;
        else
            cout<<"yes"<<endl;
        }
    }

}

你可能感兴趣的:(算法)