UVa1225 Digit Counting

《算法竞赛入门经典(第2版)》 作者:刘汝佳 

第三章习题3-3 统计一个顺次排列的数字串中0...9每个数码出现的次数

https://uva.onlinejudge.org//index.php?option=com_onlinejudge&Itemid=8&category=827

----------------------------------------------E3-3.cpp-------------------------------------------

#include <stdio.h>
#include <string.h>
#define LOCAL
int main()
{
#ifdef LOCAL
freopen("E3-3.in", "r", stdin);
#endif
int kase;
scanf("%d", &kase);
while(kase--) {
int num, count[10];
memset(count, 0, sizeof(count));
scanf("%d", &num);
for(int i = 1; i <= num; i++) {
char s[5];
sprintf(s, "%d", i);
for(int i = 0; i < strlen(s); i++)
count[ s[i] - '0' ] ++;
}
for(int i = 0; i <= 9; i++)
if(i == 0) printf("%d", count[i]);
else printf(" %d", count[i]);
printf("\n");
}
return 0;
}

---------------------------------------E3-3.in的分界线---------------------------------

20
7138
4309
1199
9830
1161
4787
3148
4729
6715
5635
9069
2122
364
9577
5290
953
588
5871
2315
579

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值