码迷,mamicode.com
首页 > 编程语言 > 详细

算法竞赛入门经典(第二版)3-3数数字UVA1225

时间:2019-10-18 20:42:25      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:can   char   net   har   str   ==   cst   ++   std   

#include <cstdio>
#include <string.h>
int main(){
int n;
scanf("%d", &n);
getchar();
while (n--){
char str[10000];
scanf("%s",str) ;
int len=strlen(str); 
int num=0;
for(int i=0;i<10;i++)
{
for(int j=0;j<len;j++)
{
if((str[j]-0)==i)
{
num++;
}
}
printf("%d",num);
num=0;
}
printf("\n\n");
}
}

https://vjudge.net/problem/UVA-1225

如有错误,欢迎指正

算法竞赛入门经典(第二版)3-3数数字UVA1225

标签:can   char   net   har   str   ==   cst   ++   std   

原文地址:https://www.cnblogs.com/lytuser/p/11700563.html

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