我正在接受一个命令,我想将它存储为一个字符向量。
int main()
{
vector<char> command;
cout << "Reservations>>";
char next;
cin >> next;
while (next !='\n'){
command.push_back(next);
cin >> next;
}
for(int i=0; i< command.size(); i++)
cout << command[i];
}
但是 while(next !='\n') 不起作用,因为即使我按 Enter 键,它仍然让我输入。