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

Browsing History

时间:2014-06-21 00:18:30      阅读:339      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   http   tar   

hdu4464:http://acm.hdu.edu.cn/showproblem.php?pid=4464

题意:就是统计n个字符串中每个字符串每个字符对印的Asci,然后输出最大的长度。

题解:水题,注意一个技巧:字符对应的asci 直接int a=(int )c(c是字符类型即可)。

bubuko.com,布布扣
 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 }
View Code

 

Browsing History,布布扣,bubuko.com

Browsing History

标签:style   class   blog   code   http   tar   

原文地址:http://www.cnblogs.com/chujian123/p/3795632.html

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