Problem Description
最近,科比得分超过乔丹成为NBA联盟得分第三人,现役球员第一名。小鑫是科比的忠实粉丝,钟爱科比,标准科密。小鑫深深的陷入了对科比的崇拜,以至于难以自拔。(这是谁出的题,小鑫明明是鲁能的粉丝=。=)小鑫每见到一个数字串,他都要计算出来其中有多少个24。
现在给你一个数字串,它的长度最大为1000位,让你求出这个数字串中有多少个24。
Input
单组输入.
一个数字串n(n的长度最大为1000位)。
Output
这个数字中有多少个
24
。
Example Input
22424
Example Output
2 #include<stdio.h> #include<string.h> void main() { char str[1001]; gets(str); int flag=0,i; for(i=0;i<strlen(str);i++) if(str[i]=='2'&&str[i+1]=='4') flag++; printf("%d\n",flag); }