输入一个字符串,统计其中数字字符('0'……'9')的个数。
输入格式:
输入在一行中给出一个不超过80个字符长度的、以回车结束的非空字符串。
输出格式:
输出所统计的数字字符的个数。
输入样例:
It's 512?
输出样例:
3
#include <stdio.h>
#include <string.h>
int main()
{
char aa[81];
fgets(aa, 81, stdin);
int len = strlen(aa);
int count = 0;
for (int i = 0; i < len; i++)
{
if (aa[i] >= '0' && aa[i] <= '9')
{
count = count + 1;
}
}
printf("%d\n", count);
return 0;
}