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

查找最大元素

时间:2014-10-27 17:03:04      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   io   color   ar   for   sp   数据   

Problem Description

对于输入的每个字符串,查找其中的最大字母,在该字母后面插入字符串“(max)”。

 

Input

输入数据包括多个测试实例,每个实例由一行长度不超过100的字符串组成,字符串仅由大小写字母构成。

 

Output

对于每个测试实例输出一行字符串,输出的结果是插入字符串“(max)”后的结果,如果存在多个最大的字母,就在每一个最大字母后面都插入"(max)"。

 

Sample Input

abcdefgfedcba

xxxxx

 

Sample Output

abcdefg(max)fedcba

x(max)x(max)x(max)x(max)x(max)

 

 1 #include <stdio.h>
 2 #include <string.h>
 3  
 4 int main(){
 5     char s[101];
 6     char max;
 7     int i;
 8     int length;
 9      
10     while((scanf("%s",s))!=EOF){
11         max=s[0];
12         length=strlen(s);
13          
14         for(i=0;i<length;i++){
15             if(s[i]>max)
16                 max=s[i];
17         }
18          
19         for(i=0;i<length;i++){
20             if(s[i]!=max)
21                 printf("%c",s[i]);
22                  
23             else
24                 printf("%c(max)",s[i]);
25         }
26          
27         printf("\n");
28     }
29              
30     return 0;
31 }

 

查找最大元素

标签:des   style   blog   io   color   ar   for   sp   数据   

原文地址:http://www.cnblogs.com/zqxLonely/p/4054336.html

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