PAT B1021 个位数统计 (15)

Posted ischenjy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PAT B1021 个位数统计 (15)相关的知识,希望对你有一定的参考价值。

AC代码

#include <cstdio>
#include <iostream>
#include <cstring>
using namespace std;
const int max_n = 1010;
char ans[max_n];
int count[10][2] = 0;

int main() 
    #ifdef ONLINE_JUDGE
    #else
        freopen("1.txt", "r", stdin);
    #endif // ONLINE_JUDGE
    char a;
    int times = 0;
//gets()在PAT编译里面错误,故换了种方法读入数据
    while(cin >> a) 
        ans[times++] = a;
    
    int length = strlen(ans);
    for(int i = 0; i < length; i++) 
        int a = ans[i] - '0';
        count[a][1] = 1;
        count[a][0]++;
        //printf("count[%d][1]: %d, count[ans[%d]][0]:%d\n", a, count[a][1], a, count[a][0]);
    
    for(int i = 0; i < 10; i++) 
        if(count[i][1] == 1) 
            printf("%d:%d\n", i, count[i][0]);
        
    
    return 0;

以上是关于PAT B1021 个位数统计 (15)的主要内容,如果未能解决你的问题,请参考以下文章

入门模拟——(字符串处理)B1021个位数统计

PAT乙级 1021. 个位数统计 (15)

PAT乙级1021 个位数统计 (15 分)

PAT字符串处理题---1021 个位数统计 (15分)

PAT-字符串处理-B1021 个位数统计 (15分)

Day 002:PAT练习--1021 个位数统计 (15 分)