Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
58566 | GT3RS 飞起来@阚 | 合法C标识符 | C++ | 通过 | 0 MS | 248 KB | 386 | 2024-12-12 17:14:50 |
#include<bits/stdc++.h> using namespace std; int main(){ string s; cin>>s; bool flag=true; for(int i=0;s[i]!='\0';i++){ if(s[0]>='0'&&s[0]<='9'){ flag=false; break; } if(s[i]>='a'&&s[i]<='z'||s[i]>='A'&&s[i]<='Z'||s[i]>='0'&&s[i]<='9'||s[i]=='_'){ continue; }else{ flag=false; } } if(flag) cout<<"yes"; else cout<<"no"; return 0; }