接收输入并测试它是否是 C 中的 int 后的无限循环;
我正在尝试从用户那里获取一个整数。我使用 cin.ignore 来确保输入是 int。但是,当它不是int时,就会导致程序进入无限循环。
int steps = 0;
while (steps<2 || steps>100)
{
char tmp[1000];
cout << "Zadejte pocet cyklu: ";
cin >> steps;
cin.ignore(numeric_limits<int>::max(), '\n');
if (!cin || cin.gcount() != 1)
{
cin.getline(tmp,1000);
steps = 0;
}
}
I'm trying to take an integer from the user. I'm using cin.ignore to make sure that the input is an int. However, when it is not an int, it causes the program to enter an infinite loop.
int steps = 0;
while (steps<2 || steps>100)
{
char tmp[1000];
cout << "Zadejte pocet cyklu: ";
cin >> steps;
cin.ignore(numeric_limits<int>::max(), '\n');
if (!cin || cin.gcount() != 1)
{
cin.getline(tmp,1000);
steps = 0;
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果执行
cin >> 时输入流不包含整数
,流进入错误状态,必须显式地步骤
清除(
cin.clear()
)。在那之前,错误状态仍然存在,并且所有进一步尝试输入将被视为无操作。
If the input stream doesn't contain an integer when you do
cin >>
, the stream enters an error state, which must be explicitlysteps
cleared (
cin.clear()
). Until then, the error state remains, and allfurther attempts to input will be treated as no-ops.