首页 > 代码库 > Browsing History
Browsing History
hdu4464:http://acm.hdu.edu.cn/showproblem.php?pid=4464
题意:就是统计n个字符串中每个字符串每个字符对印的Asci,然后输出最大的长度。
题解:水题,注意一个技巧:字符对应的asci 直接int a=(int )c(c是字符类型即可)。
1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<algorithm> 5 using namespace std; 6 char str[1000]; 7 int main(){ 8 int tt=1,n,ans=0,temp; 9 while(~scanf("%d",&n)){10 ans=0;11 while(n--){12 memset(str,0,sizeof(str));13 scanf("%s",str);14 int len=strlen(str);15 temp=0;16 for(int i=0;i<len;i++){17 temp+=(int)str[i];18 }19 ans=max(ans,temp);20 }21 printf("Case %d: %d\n",tt++,ans);22 23 }24 }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。