1

我想接受用户输入并将他们输入的内容放入字符串数组中。我希望它读取每个字符并用空格分隔每个单词。我确信这是编码错误的,尽管我确实尝试过做得很好。我收到分段错误错误,想知道如何在不出现错误的情况下执行此操作。这是我的代码。

#include <iostream>

using namespace std;

void stuff(char command[][5])
{ 
    int b, i = 0;
    char ch;
    cin.get(ch);

    while (ch != '\n')
    {
        command[i][b] = ch;
        i++;
        cin.get(ch);
        if(isspace(ch))
        {
            cin.get(ch);
            b++;

        }

    }
    for(int n = 0; n<i; n++)
    {
        for(int m = 0; m<b; m++)
            {
            cout << command[n][m];
            }
    }

}

int main()
{
    char cha[25][5];
    char ch;
    cin.get(ch);
    while (ch != 'q')
    {
        stuff(cha);
    }

    return 0;
}
4

1 回答 1

1

b未初始化,因此在首次用作索引时将具有随机值。初始化b并确保数组索引不会超出数组的范围。

或者,使用std::vector<std::string>andoperator>>()并忘记数组索引:

std::string word;
std::vector<std::string> words;
while (cin >> word && word != "q") words.push_back(word);
于 2012-12-09T09:14:53.287 回答