标签:des style blog io ar color sp for 数据
1 Problem Description 2 对于给定的一个字符串,统计其中数字字符出现的次数。 3 4 5 Input 6 输入数据有多行,第一行是一个整数n,表示测试实例的个数,后面跟着n行,每行包括一个由字母和数字组成的字符串。 7 8 9 Output 10 对于每个测试实例,输出该串中数值的个数,每个输出占一行。 11 12 #include<stdio.h> 13 #include<string.h> 14 int main () 15 { 16 17 #ifdef ONLINE_JUDGE 18 #else 19 //freopen ("in.txt","r",stdin); 20 #endif 21 int n; 22 23 while(scanf("%d",&n)!=EOF) 24 { 25 while (n--) 26 { char ch[100]; 27 int i,g=0,k=0; 28 scanf("%s",ch); 29 g=strlen(ch); 30 for ( i=0;i<=g-1;++i) 31 if(ch[i]>=‘0‘&&ch[i]<=‘9‘) 32 { 33 k++; 34 35 } 36 printf("%d\n",k); 37 38 } 39 40 41 42 } 43 return 0; 44 }
标签:des style blog io ar color sp for 数据
原文地址:http://www.cnblogs.com/lonelysky/p/4117504.html