/* 对于输入的每个字符串,查找其中的最大字母,在该字母后面插入字符串"(max)"。 样例输入 abcdefgfedcba xxxxx 样例输出 abcdefg(max)fedcba x(max)x(max)x(max)x(max)x(max) */ #include <stdio.h> #include<string.h> int main() { int i; char str[100],maxch; gets(str); maxch=str[0]; for(i=0;str[i]!='