#include<iostream>
#include<algorithm>
#include<string>
using namespace std;
int main() {
string st;
while (getline(cin, st)) {
char max = *max_element(st.begin(), st.end());
for (auto i : st) {
cout << i;
if (i == max)
cout << "(max)";
}
cout << endl;
}
return 0;
}
[ACM] HDU 2025 查找最大元素
最新推荐文章于 2020-01-23 13:54:39 发布