Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
20670 | 汪天一 | 合法 C 标识符 | C++ | 通过 | 100 | 0 MS | 260 KB | 409 | 2021-06-19 17:29:11 |
#include<bits/stdc++.h> using namespace std; string s; int len; int main(){ cin>>s; len=s.length(); if((s[0]>='a'&&s[0]<='z')||(s[0]>='A'&&s[0]<='Z')||(s[0]=='_')){ for(int i=1;i<=len-1;i++){ if(!((s[i]>='a'&&s[i]<='z')||(s[i]>='A'&&s[i]<='Z')||(s[i]=='_'))){ cout<<"no"<<endl; return 0; } } }else{ cout<<"no"<<endl; return 0; } cout<<"yes"<<endl; return 0; }