我想接受用户输入并将他们输入的内容放入字符串数组中。我想让它读取每个字符并用空格分隔每个字。我确信这是编码严重,虽然我确实尝试做得体面。我收到了分段错误错误,并想知道如何在不收到错误的情况下执行此操作。这是我的代码。
#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;
}
答案 0 :(得分:0)
b
未初始化,因此在首次用作索引时会有一个随机值。初始化b
并确保数组索引不超出数组的范围。
或者,使用std::vector<std::string>
和operator>>()
并忘记数组索引:
std::string word;
std::vector<std::string> words;
while (cin >> word && word != "q") words.push_back(word);