Run ID:105193

提交时间:2025-01-12 17:04:13

#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;   }