用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程序,其中设置了用文件进行输入输出。