本文主要是介绍L1-003 个位数统计 (15 分)(桶),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
输入格式:
每个输入包含 1 个测试用例,即一个不超过 1000 位的正整数 N。
输出格式:
对 N 中每一种不同的个位数字,以 D:M 的格式在一行中输出该位数字 D 及其在 N 中出现的次数 M。要求按 D 的升序输出。
输入样例:
100311
输出样例:
0:2
1:3
3:1
代码:
#include<iostream>
#include<string>
#include<cstdio>
#include<cmath>
#include<cstring>
#include<algorithm>
using namespace std;
int book[15] ;
int main()
{memset(book , 0 , sizeof(book));string f;getline(cin,f);int len = f.size();for(int i = 0 ; i < len ; i++){book[f[i]-'0']++;}for(int i = 0 ; i < 10 ; i++){if(book[i] != 0)cout<<i<<":"<<book[i]<<endl;}
}
这篇关于L1-003 个位数统计 (15 分)(桶)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!