| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 77268 | sh25_shenpy | 字符类型判断 | C++ | 解答错误 | 0 MS | 248 KB | 254 | 2025-12-21 20:32:48 |
#include<bits/stdc++.h> using namespace std; int main() { char c; cin>>c; if(isdigit(c)==1) cout<<"digit"; else if(isupper(c)==1) cout<<"upper"; else if(islower(c)==1) cout<<"lower"; else cout<<"other"; return 0; }