| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 76916 | sh25_shenpy | 统计数字字符个数 | C++ | 解答错误 | 0 MS | 244 KB | 212 | 2025-12-20 15:54:59 |
#include<bits/stdc++.h> #include<cstring> using namespace std; char a[256]; int main() { int s=0; for(int i=0;i<strlen(a);++i){ if(int(a[i])<10) s++; } cout<<s; return 0; }