提交时间:2021-06-26 16:06:55

运行 ID: 21089

#include<bits/stdc++.h> using namespace std; string s; bool check(){ for(int i=0;i<s.size();i++){ if(i==0){ if(!(s[i]=='_'||(s[i]>='a'&&s[i]<='z')||(s[i]>='A'&&s[i]<='Z'))) return 0; }else{ if(!(s[i]=='_'||(s[i]>='a'&&s[i]<='z')||(s[i]>='A'&&s[i]<='Z')||(s[i]>='0'&&s[i]<='9'))) return 0; } } return 1; } int main(){ cin>>s; // getline(cin,s) 包含空格 if(check()) cout<<"yes"; else cout<<"no"; return 0; }