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

1021. 个位数统计

时间:2014-09-01 22:34:53      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   ar   for   2014   

 1 /*
 2  * Main.c
 3  * 1021. 个位数统计
 4  *  Created on: 2014年8月30日
 5  *      Author: Boomkeeper
 6  ********测试通过******
 7  */
 8 
 9 #include <stdio.h>
10 #include <string.h>
11 
12 int main(void){
13 
14     char str[1001];
15     int num[10]={-1};
16     int len;
17     int i;
18 
19     for(i=0;i<10;i++)
20         num[i]=-1;
21 
22     scanf("%s",str);
23 
24     len = strlen(str);
25 
26     for(i=0;i<len;i++){
27         num[(str[i]-48)]++;
28     }
29 
30     for(i=0;i<10;i++)
31         if(num[i]!=-1)
32             printf("%d:%d\n",i,num[i]+1);
33 
34     return 0;
35 }

 

上一篇发布完落下2道题目,赶紧补发!

 

题目链接:

http://pat.zju.edu.cn/contests/pat-b-practise/1021

 

1021. 个位数统计

标签:style   blog   http   color   os   io   ar   for   2014   

原文地址:http://www.cnblogs.com/boomkeeper/p/1021b.html

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