Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
146459 杜禹轩 统计数字字符个数 C++ Wrong Answer 0 MS 256 KB 197 2026-01-28 14:33:55

Tests(0/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ char c[1000001],a,b; int q=0; for(int i=0;c[i]!='\0';i++){ if(c[i]>='0' and c[i]<='9'){ q++; } } return 0; }


Run Info:

------Input------
I have seen 3 persons over there.
------Answer-----
1
------Your output-----