提交时间:2021-06-26 16:17:37

运行 ID: 21095

#include <iostream> #include <string> #include <cassert> using namespace std; bool checkValidIdentifierOfC(string s) { char c = s[0]; // first char if (c>='0' && c<='9') { return false; } for(int i=0; i<s.size(); i++) { c = s[i]; if ((c>='0' && c<='9') || (c>='a' && c<='z') || (c>='A' && c<='Z') || (c == '_')) { continue; } else { return false; } } return true; } int main() { string strText; cin >> strText; assert(strText.size() <= 20); if (true == checkValidIdentifierOfC(strText)) { cout << "yes" << endl; } else { cout << "no" << endl; } return 0; }