解法一:
#include<bits/stdc++.h>
using namespace std;
int main()
{
char ch[256];int s=0;
gets(ch);
for(int i=0;i<strlen(ch);i++)
if(ch[i]>='0'&&ch[i]<='9') //判断是否为数字字符;
s++;
cout<<s;
return 0;
}
解法二:
#include<bits/stdc++.h>
using namespace std;
int main()
{
string s; int t=0;
getline(cin,s);
for(int i=0;i<s.size();i++)
if(s[i]>='0'&&s[i]<='9')
t++;
cout<<t;
return 0;
}