码迷,mamicode.com
首页 > 其他好文 > 详细

hdu 2017 字符串统计

时间:2014-07-13 21:34:06      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   div   

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2017

题目大意:统计数字出现的次数,但是要注意输入字符时,要清流。。要吸收一个回车。还有注意输入时的格式~

 1 #include<stdio.h>
 2 int main()
 3 {
 4     int n;
 5     char c;
 6     scanf("%d\n",&n);
 7     while(n--)
 8     {
 9         int a=0;
10         while((c=getchar())!=\n)
11         {
12             if(c>=0&&c<=9)
13                 a++;
14         }
15         printf("%d\n",a);
16     }
17 }

 

hdu 2017 字符串统计,布布扣,bubuko.com

hdu 2017 字符串统计

标签:style   blog   http   color   io   div   

原文地址:http://www.cnblogs.com/qq-star/p/3840719.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!