标签:tput esc amp 技术 就是 相互 结果 最大 def
1 #include<bits/stdc++.h> 2 #define LL long long 3 using namespace std; 4 int main() 5 { 6 string s; 7 while(cin>>s) 8 { 9 // string s1=s; 10 int l=s.size();int max_=-10; 11 for(int i=0;i<l;++i) 12 { 13 if(max_<s[i]) max_=s[i]; 14 } 15 for(int i=l-1;i>=0;--i) 16 { 17 if(s[i]==max_) { 18 s.insert(i+1,"(max)"); 19 } 20 } 21 cout<<s<<endl; 22 } 23 }
标签:tput esc amp 技术 就是 相互 结果 最大 def
原文地址:https://www.cnblogs.com/Auroras/p/10799348.html