gpt4 book ai didi

c++ - 如何让 C++ 程序在用户输入时计算字数?

转载 作者:行者123 更新时间:2023-11-30 00:55:42 25 4
gpt4 key购买 nike

我正在尝试编写一个程序,在用户输入“退出”之前一直从用户那里获取输入。每次用户输入时,我希望程序打印出用户输入的字数。因此,用户的以下输入:

hello how are you

将产生以下输出:

You entered 4 words.

但是,我在编写程序时遇到了问题,因此它只能计算一行中的单词数;在进入下一行之前它不会清除数字。因此,如果它从用户那里获取了三次输入,它会将这三行中的单词总数加起来。例如,以下输入:

how are you
i am good thank you
quit

将产生以下输出:

 You entered 9 words.

当我希望它输出用户输入的每一行之后的单词数时(退出除外),即

>>how are you
<<You entered 3 words.
>>i am good thank you
<<You entered 5 words.
>>quit

这是我的代码的相关部分:

char *input;
int inum;

int inputLoop()
{
char quit[] = "quit";
inum = 0; //counts number of words

while (strcmp(input, quit) != 0)
{
cin >> input;
inum++;
}
cout <<"You entered " <<inum <<" words." <<endl;

我宁愿不使用 vector 之类的东西;无论我使用什么,最终都需要转换为 *char,因为我的全局变量是 *char。 (我的全局变量是 *char,因为根据某些条件,*input 可能会设置为来自 main 的 *argv[]。)

我已经尝试了各种各样的事情,但我似乎无法忘记这样一个事实,即 strcmp(input, quit) 一次比较一个输入的单词以退出,而不是将整个输入行与辞职。帮助。

最佳答案

您的任何要求都不排除使用 std::stringstd::vector。我建议您使用它们。

#include <string>
#include <sstream>
#include <iostream>
#include <vector>

std::vector<std::string> words;

int inputLoop()
{
char quit[] = "quit";
total_words = 0;

std::string line;
// grab a line at a time
while(std::getline(std::cin, line) && line != quit) {
// clear the vector of words
words.clear();
// make a string stream to read words from that line
std::stringstream ss(line);
// grab all the words into a vector
std::string word;
while(ss >> word) {
words.push_back(word);
}
std::cout <<"You entered " <<words.size() <<" words." <<endl;
}
}

int main(int argc, char** argv) {
// get the data from argv
words = std::vector<std::string>(argv, argv + argc);
}

关于c++ - 如何让 C++ 程序在用户输入时计算字数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11764365/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com