| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 76914 | sh25_shenpy | 统计数字字符个数 | C++ | 编译错误 | 0 MS | 0 KB | 183 | 2025-12-20 15:53:54 |
#include<iostream> 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; }