gpt4 book ai didi

c++ - 字符串输入验证问题 (C++)

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:03:40 26 4
gpt4 key购买 nike

我在尝试验证我的用户输入时遇到了问题。这是我的代码:

#include <iostream>
#include <string>

using namespace std;

int main()
{
string choice;


cout << "Please type something: ";
cin >> choice;
cin.ignore();

while (choice != "1" && choice != "2" && choice != "3" && choice != "4" && choice != "5")
{
cout << "Incorrect choice! Please input a valid number: >_";
cin >> choice;
cin.ignore();
}

return 0;
}

当我输入“wronginput”时,那个输入落入while循环并显示

Incorrect choice! Please input a valid number: >_

哪个好。然而,当我尝试“错误输入”时,我得到了一个“奇怪”的版本:

Incorrect choice! Please input a valid number: >_ Incorrect choice! Please input a valid number: >_

我的猜测是中间的空间是罪魁祸首。我有什么办法可以解决这个问题吗?谢谢。

最佳答案

当你输入“错误的输入”进行输入时,该行

cin >> choice;

choice 中读取并存储“错误”。

线

cin.ignore();

只忽略一个字符。因此,您仍然在流中有“输入”和随后的换行符。下次您读入 choice 时,您会在 choice 中获得“input”。

这解释了您的程序的行为。

为了修复它,请确保忽略该行的其余部分,而不仅仅是一个字符。使用

cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');

添加

#include <limits>

能够使用 std::numeric_limits

关于c++ - 字符串输入验证问题 (C++),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54817399/

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