首页 > 代码库 > (HDU)1219 -- AC Me
(HDU)1219 -- AC Me
题目:http://vjudge.net/problem/HDU-1219
这题在循环的时候i<len,写成了i<=len,WA一万次才改出来。
1 #include <cstdio> 2 #include <cstring> 3 #include <cmath> 4 #include <iostream> 5 #include <algorithm> 6 #include <string> 7 #include <cstdlib> 8 9 using namespace std; 10 11 int main() 12 { 13 int num[30],len,i; 14 char buf[100010]; 15 while(gets(buf)!=NULL) 16 { 17 memset(num,0,sizeof(num)); 18 len=strlen(buf); 19 for(i=0;i<len;i++) 20 { 21 if(‘a‘<=buf[i]&&buf[i]<=‘z‘) 22 num[buf[i]-‘a‘]++; 23 } 24 for(i=0;i<26;i++) 25 printf("%c:%d\n",‘a‘+i,num[i]); 26 printf("\n"); 27 } 28 return 0; 29 }
(HDU)1219 -- AC Me
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。