#include<stdio.h>
#include<math.h>
#include<ctype.h>
int main()
{
char s[100];
gets(s);
int i;
char max1;
for(i=0;s[i]!='\0';i++)
{
s[i]=tolower(s[i]);
}
max1=s[0];
for(i=0;s[i]!='\0';i++)
{
if(s[i]>=max1)
max1=s[i];
}
for(i=0;s[i]!='\0';i++)
{
printf("%c",s[i]);
if(s[i]==max1)
printf("(max)");
}
return 0;
}
1137查找最大元素
最新推荐文章于 2023-08-28 11:59:22 发布