标签: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
标签:style blog http color os io ar for 2014
原文地址:http://www.cnblogs.com/boomkeeper/p/1021b.html