4 条题解
- 
  -1
#include <bits/stdc++.h> using namespace std; char x[21]; int main(){ cin >> x; if(x[0] >= 48 && x[0] <= 57){ cout << "no"; return 0; } for(int i = 1;i < strlen(x);i++){ int p = x[i]; if((p<'a' && p>'z') && (p<'A' && p>'Z') && p!='_'){ cout << "no"; return 0; } } cout << "yes"; return 0; }
 
信息
- ID
 - 1104
 - 时间
 - 1000ms
 - 内存
 - 128MiB
 - 难度
 - 7
 - 标签
 - 递交数
 - 679
 - 已通过
 - 135
 - 上传者