| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 83001 | sh25_zhoumy | 统计数字字符个数 | C++ | Accepted | 0 MS | 248 KB | 215 | 2026-01-18 20:31:19 |
#include<bits/stdc++.h> using namespace std; int main() { string s; int h=0; getline(cin,s); for(int i=0;i<s.size();++i){ if(isdigit(s[i])) ++h; } cout<<h; return 0; }