gpt4 book ai didi

c++ - 如何解决 cin.fail() 中的循环

转载 作者:行者123 更新时间:2023-11-28 05:21:56 25 4
gpt4 key购买 nike

知道为什么会这样吗?

sample run

void askNQ(int &noq)
{
bool x = true;
while (x)
{
int i;
cout << "How many questions would you like(out of " << noq << ")?" << endl;
cin >> i;

if (cin.fail())
{
cin.clear();
cin.ignore();
cout << "Sorry, that is not valid." << endl;
x = true;
}
else if (i > noq)
{
cout << "Sorry, that is too many." << endl;
x = true;
}
else if (i <= 0)
{
cout << "Sorry, that is too less." << endl;
x= true;
}
}
}

最佳答案

cin.ignore();实际上是对 cin.ignore(1, char_traits<char>::eof()); 的调用.

因此您没有清除缓冲区中任何剩余的换行符。

以下应该可以解决您的问题:

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

它会清除下一个换行符,无论它在缓冲区中有多远(出于所有实际目的)。

关于c++ - 如何解决 cin.fail() 中的循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41319827/

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