1 #include<iostream> 2 #include<stdio.h> 3 #include<math.h> 4 #include<stdlib.h> 5 #include<string.h> 6 #include<limits> 7 using namespace std; 8 9 int main() 10 { 11 char str[120]; 12 while(~scanf("%s",str)) 13 { 14 char max; 15 max=‘0‘; 16 for(int i=0;i<strlen(str);i++) 17 { 18 if(str[i]>max) 19 max=str[i]; 20 } 21 for(int i=0;i<strlen(str);i++) 22 { 23 if(str[i]==max) 24 { 25 printf("%c(max)",str[i]); 26 } 27 else 28 printf("%c",str[i]); 29 } 30 cout<<endl; 31 } 32 return 0; 33 }
时间: 2024-10-19 11:16:53