查找最大元素

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 }

 

posted @ 2014-10-27 15:37  zqxLonely  阅读(297)  评论(0编辑  收藏  举报