ssin方法
利用sstream中提供的stringstream的办法智能的将字符串分割
#include <iostream>
#include <sstream>
using namespace std;
int main()
{
string str;
getline(cin, str);
// 与cin相同空白字符会被忽略(' ', '\n', '\t')
str[str.size()-1] = '\t';
stringstream ssin(str);
string s1, s2;
while(ssin >> s1)
if(s1.size() > s2.size()) s2 = s1;
cout << s2;
return 0;
}