黎子卿 发表于 2023-11-24 17:34:57

这个代码为什么输出不了东西

#include <iostream>
#include <string>
#include <set>
#include <sstream>
using namespace std;
int main()
{
        string s,temp;
        set<string> str;
        while (cin >> s)
        {
                for (int i = 0; i < s.length(); i++)
                {
                        if (isalpha(s))
                        {
                                s = tolower(s);
                        }
                        else
                        {
                                s = ' ';
                        }
                }
                stringstream iss(s);
                while (iss >> temp)
                {
                        str.insert(temp);
                }
        }
        for (set<string>::iterator it = str.begin(); it != str.end(); it++)
        {
                cout << *it << endl;
        }
        return 0;
}

Mike_python小 发表于 2023-11-24 17:35:19

这段代码的问题在于它会陷入无限循环。在 while (cin >> s) 循环中,你正在尝试从标准输入流中读取字符串,并将其存储到变量 s 中。然而,如果没有明确的终止条件来结束输入过程,程序将一直等待输入,因此无法输出结果。

为了解决这个问题,你可以在输入完成后添加一个终止条件,例如输入一个特定的字符串来表示输入结束,然后在循环中进行判断。以下是修改后的代码示例:


#include <iostream>
#include <string>
#include <set>
#include <sstream>
using namespace std;
int main()
{
    string s, temp;
    set<string> str;
    while (cin >> s)
    {
      if (s == "end")// 输入 "end" 结束输入
            break;
      
      for (int i = 0; i < s.length(); i++)
      {
            if (isalpha(s))
            {
                s = tolower(s);
            }
            else
            {
                s = ' ';
            }
      }
      stringstream iss(s);
      while (iss >> temp)
      {
            str.insert(temp);
      }
    }
    for (set<string>::iterator it = str.begin(); it != str.end(); it++)
    {
      cout << *it << endl;
    }
    return 0;
}


这样,当你在输入过程中输入 "end" 后,程序将结束输入并输出结果。

希望这次能够帮助到你!如果还有其他问题,请随时提问。

回复来自于CHAT-GPT。回复仅供参考,如有人工回答,最佳答案请优先选择人工

FishC_GPT 发表于 2023-11-24 17:35:47

这个代码无法输出任何东西的问题在于两点:

1. 缺少命名空间
代码中使用了`set`和`set::iterator`,但没有指明使用的是哪个命名空间。你需要添加`using namespace std;`来使用`std::set`和`std::set::iterator`。

2. 函数调用错误
在for循环中,你使用了`isalpha(s)`来检查字符串`s`中是否只包含字母。但实际上,`isalpha()`函数需要传入一个字符而不是字符串。你应该改为`s`来检查每个字符。另外,正确的转换为小写字母的函数是`tolower()`而不是`tolower(s)`。

修改后的代码如下:
#include <iostream>
#include <string>
#include <sstream>
#include <cctype>
#include <set>
using namespace std;
int main()
{
    string s, temp;
    set<string> str;
    while (cin >> s)
    {
      for (int i = 0; i < s.length(); i++)
      {
            if (isalpha(s))
            {
                s = tolower(s);
            }
            else
            {
                s = ' ';
            }
      }
      stringstream iss(s);
      while (iss >> temp)
      {
            str.insert(temp);
      }
    }
    for (set<string>::iterator it = str.begin(); it != str.end(); it++)
    {
      cout << *it << " ";
    }
    return 0;
}
这个代码会将输入的字符串按照单词进行分割,忽略非字母字符,并将所有的单词转换为小写字母后存储在一个`set`中,最后输出这个`set`中的单词。
以上回复来自 -- ChatGPT(FishC官方接口),如未能正确解答您的问题,请继续追问。
页: [1]
查看完整版本: 这个代码为什么输出不了东西