Run ID:134724

提交时间: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; }