4 条题解

  • -1
    @ 2024-11-17 18:01:34

    #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
    标签
    递交数
    665
    已通过
    131
    上传者