相关笔记汇总:[笔记] 字符串输入 #字符输入文章来源:https://www.toymoban.com/news/detail-740070.html
题目
题目:1381 查找最大元素文章来源地址https://www.toymoban.com/news/detail-740070.html
代码
#include<bits/stdc++.h>
using namespace std;
int main() {
// string s;
char s[100000];
while(scanf("%c", &s[0]) != EOF) {
char maxx = s[0];
int len = 1;
while(scanf("%c", &s[len]) && s[len] != '\n') {
len ++;
}
for(int i = 0; i < len; i ++) {
if(s[i] > maxx)
maxx = s[i];
}
for(int i = 0; i < len; i ++) {
if(s[i] == maxx)
printf("%c(max)", s[i]);
else
printf("%c", s[i]);
}
cout << endl;
}
return 0;
}
到了这里,关于[题] 查找最大元素 #字符输入的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!