字符串统计
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 100429 Accepted Submission(s): 55317
Problem Description
对于给定的一个字符串,统计其中数字字符出现的次数。
Input
输入数据有多行,第一行是一个整数n,表示测试实例的个数,后面跟着n行,每行包括一个由字母和数字组成的字符串。
Output
对于每个测试实例,输出该串中数值的个数,每个输出占一行。
Sample Input
2
asdfasdf123123asdfasdf
asdf111111111asdfasdfasdf
Sample Output
6
9
1 #include<cstdio> 2 using namespace std; 3 int main() 4 { 5 char a[1000],*t; 6 int n; 7 while(scanf("%d",&n)!=EOF) 8 { 9 while(n--) 10 { 11 int count = 0; 12 scanf("%s",a); 13 t = a; 14 while(*t)//遇到' '时停止 15 { 16 if(*t>='0' && *t <='9') 17 { 18 count++; 19 } 20 t++;//指向字符数组a的指针向后移动一位 21 } 22 printf("%d ",count); 23 } 24 } 25 return 0; 26 }