| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 76915 | sh25_shenpy | 统计数字字符个数 | C++ | 解答错误 | 0 MS | 232 KB | 207 | 2025-12-20 15:54:31 |
#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(a[i]<10) s++; } cout<<s; return 0; }