用C或C++编写:输入一段英文句子,输出其中最长的单词
2个回答
展开全部
包含标点处理
#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;
}
展开全部
#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再按回车输入
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询