| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134724 | 鲁博睿 | 统计数字字符个数 | C++ | Wrong Answer | 0 MS | 260 KB | 212 | 2025-11-01 12:49:06 |
#include <bits/stdc++.h> ? using namespace std; char t[256]; int main() { gets(t); int x; for(int i=0;i<strlen(t);i++){ if(t[i]>='0'&&t[i]<='9'){ x++; } } cout<<x; return 0; }
------Input------
I have seen 3 persons over there.
------Answer-----
1
------Your output-----
4195065