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

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

时间:2020-06-09 18:43:19      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:turn   main   problem   namespace   set   space   统计   names   ble   

1021 个位数统计 (15分)

#include<iostream>
#include<string>
#include<cstdio>


using namespace std;


int main(){
	string s;cin>>s;
	int a[1005]={0};
	for(int i=0;i<s.length();i++){
		a[s[i]-‘0‘]++;
	}
	for(int i=0;i<=9;i++){
		if(a[i]) cout<<i<<":"<<a[i]<<"\n";
	}
	return 0;
}

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

标签:turn   main   problem   namespace   set   space   统计   names   ble   

原文地址:https://www.cnblogs.com/bingers/p/13074347.html

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