Original question: Problem Description searches for the maximum letter of each input string, and inserts the string "(max)" after the letter )". Input data includes multiple test instances. Each instance consists of a string of no more than 100 characters in length. The string consists of only uppercase and lowercase letters. Output outputs a line of strings for each test instance. The Output result is the result of inserting the string "(max)". If there are multiple largest letters, insert "(max)" after each maximum letter )". Sample Input abcdefgedcbaxxxxx Sample Output abcdefg (max) fedcbax (max) x (max) original code: [cpp] # include <stdio. h> int main () {char t [128]; char max; int I; while (gets (t) {for (max = I = 0; t [I]; I ++) {if (t [I]> max) max = t [I] ;}for (I = 0; t [I]; I ++) {putchar (t [I]); if (t [I] = max) printf ("% s", "(max )");} putchar ('\ n');} return 0 ;}