7-6 统计字符串中数字字符的个数 (15 分)
输入一个字符串,统计其中数字字符(‘0’……‘9’)的个数。
输入格式:
输入在一行中给出一个不超过80个字符长度的、以回车结束的非空字符串。
输出格式:
输出所统计的数字字符的个数。
输入样例:
Enter a string: It’s 512?
结尾无空行
输出样例:
3
#includeint main() { int i,count; char str[80]; i=0; while((str[i]=getchar())!='n'){ i++; } str[i]=' '; count=0; for(i=0;str[i]!=' ';i++) { if(str[i]>='0'&&str[i]<='9') count++; } printf("%d",count); return 0; }



