1. 程式人生 > >ALGO-70演算法訓練 最長字串 (c++)

ALGO-70演算法訓練 最長字串 (c++)

演算法訓練 最長字串  

時間限制:1.0s   記憶體限制:512.0MB

    

  求出5個字串中最長的字串。每個字串長度在100以內,且全為小寫字母。

樣例輸入

one two three four five

樣例輸出

three

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

int main(int argc, char *argv[]) {
	string s[5];
	int m=0,p=0;
	for(int i=0;i<5;i++){
		cin>>s[i];
		if(s[i].length()>m){
			m=s[i].length();
			p=i;
		}
	}
	cout<<s[p]<<endl;		
	return 0;
}