用C或C++编写:输入一段英文句子,输出其中最长的单词

 我来答
帐号已注销
2017-11-24 · 超过20用户采纳过TA的回答
知道答主
回答量:37
采纳率:75%
帮助的人:28.9万
展开全部

包含标点处理

#include <iostream>
#include <string>
#include <algorithm> 
#include <sstream>


int main()
{
    std::string t, word, long_word;

    getline(std::cin, t);

    std::istringstream iss(t);
    while (iss >> word)
    {
        std::string result;
        std::remove_copy_if(word.begin(), word.end(),
            std::back_inserter(result),         
            ispunct);
        if (result.length() > long_word.length())
        {
            long_word = result;
        }
    }

    std::cout << long_word << std::endl;

    getchar();
    return 0;
}
xth21
2017-11-24 · TA获得超过471个赞
知道小有建树答主
回答量:603
采纳率:55%
帮助的人:446万
展开全部
#include<iostream>
#include<string>
using namespace std;
int main() {
string word,longWord;
cout << "请输入英文句子,按ctrl+z后按下回车结束输入:\n";
while (cin >> word) {
if (word.length() > longWord.length())
longWord=word;
}
cout << "最长单词是"<<longWord<<endl;
return 0;
}
更多追问追答
追问
谢谢
请问为什么要按ctrl+z再按回车输入
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式