Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 28095    Accepted Submission(s): 15577 
#include <stdio.h> #include <string.h> char max(char s[]) { int i; char m=‘\0‘; for(i=0;s[i];i++) if(m<s[i])m=s[i]; return m; } int main() { int i; char s[105],m; while(scanf("%s",s)!=EOF) { m=max(s); for(i=0;s[i];i++) { putchar(s[i]); if(m==s[i])printf("(max)"); } printf("\n"); } return 0; }
#include <stdio.h>
#include <string.h>
char max(char s[])
{
 int i;
 char m=‘\0‘;
 for(i=0;s[i];i++)
  if(m<s[i])m=s[i];
 return m;
}
int main()
{
 int i;
 char s[105],m;
 while(scanf("%s",s)!=EOF)
 {
  m=max(s);
  for(i=0;s[i];i++)
  {
   putchar(s[i]);
   if(m==s[i])printf("(max)");
  }
  printf("\n");
 }
 return 0;
}
hdu 2025 查找最大元素,布布扣,bubuko.com
原文:http://www.cnblogs.com/2014acm/p/3887134.html