[PAT-乙级]1021.个位数统计

来源:互联网 发布:java 格式化当前时间 编辑:程序博客网 时间:2024/05/22 06:30

1021. 个位数统计 (15)

时间限制
100 ms
内存限制
65536 kB
代码长度限制
8000 B
判题程序
Standard
作者
CHEN, Yue

给定一个k位整数N = dk-1*10k-1 + ... + d1*101 + d0 (0<=di<=9, i=0,...,k-1, dk-1>0),请编写程序统计每种不同的个位数字出现的次数。例如:给定N = 100311,则有2个0,3个1,和1个3。

输入格式:

每个输入包含1个测试用例,即一个不超过1000位的正整数N。

输出格式:

对N中每一种不同的个位数字,以D:M的格式在一行中输出该位数字D及其在N中出现的次数M。要求按D的升序输出。

输入样例:
100311
输出样例:
0:21:33:1
#include<stdio.h>#include<string.h>int main(){    //freopen("D://input.txt", "r", stdin);    char s[1002];    int count[11];    while(scanf("%s", s) != EOF)    {        memset(count, 0, sizeof(count));        for(int i = 0; i < strlen(s); i ++)        {            count[s[i]-'0'] ++;        }        for(int i = 0; i < 10; i ++)        {            if(count[i] != 0)                printf("%d:%d\n", i, count[i]);        }    }    return 0;}



0 0
原创粉丝点击