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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用C或C++编写:输入一段英文句子,输出其中最长的单词相关的知识,希望对你有一定的参考价值。

包含标点处理

#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;

参考技术A #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再按回车输入

可不可以做到直接回车输入。。。。萌新一枚,望详细解释

本回答被提问者和网友采纳

以上是关于用C或C++编写:输入一段英文句子,输出其中最长的单词的主要内容,如果未能解决你的问题,请参考以下文章

DEV-C++中编写了一段C程序,其中设置了用文件进行输入输出。

PAT算法题C++实现(Basic)1009 说反话 (20 分)

用C++编写程序:输入10个数,输出其中最大的数

1.13.16

如何用C++编写一段“输入A输出1”的程序

ZZNUOJ_用C语言编写程序实现1136:首字母变大写(附完整源码)