Run ID:111350
提交时间:2025-03-01 17:10:33
#include<iostream> #include<cstring> using namespace std; int main(){ char t[256]; gets(t); int x; for(int i=0;i<strlen(t);i++) if(t[i]>='0'&&t[i]<='9') x++; cout<<x; return 0; }