解题思路:
不断 cin str,因为 cin 会以 分隔符作为输入结束标志,每次读入一个单词,if 判断是否更新 maxLenStr
注意事项:
if 中 > 号: 则碰到等长的字符串不会更新,即 只输出多个最长字符串中最先出现的字符串
换成 >= 号: 则 输出多个最长字符串中最后出现的字符串
参考代码:
#include<bits/stdc++.h> using namespace std; int main() { string str, maxLenStr = ""; while (cin >> str) { if (str.length() > maxLenStr.length()) maxLenStr = str; } cout << maxLenStr << endl; return 0; }
0.0分
0 人评分