C/C++教程

杭电OJ 2025(C++)

本文主要是介绍杭电OJ 2025(C++),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

查找最大元素

#include<iostream>
using namespace std;
#include<string>

int main()
{
	int i;
	string a;
	while(cin>>a)
	{
		char max = a[0];
		for(i = 1 ; i < a.size() ; i++)
			if(max < a[i])
				max = a[i];
		for(i = 0 ; i < a.size() ; i++)
		{
			cout<<a[i];
			if(a[i] == max)
				cout<< "(max)";
		}
		cout<<endl;
	}
	return 0;
}
这篇关于杭电OJ 2025(C++)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!