作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在用 C++ 创建一个简单的控制台应用程序,其中包含一个将两个整数作为输入的 while 循环。但是如果我输入一个不是整数的字符,比如“a”,循环就会变成无限循环。我该如何阻止它?
我的代码应该在输入字符值“|”时终止但它需要整数作为输入,我不确定如何解决这个问题。
到目前为止我的代码(尝试在输入字符值“|”时结束循环):
int main()
{
int x = 0;
int y = 0;
char c = {x};
char d = {y};
while (c != '|')
{
cin >> x >> y;
// later I will do stuff with x and y
}
system("pause");
return 0;
}
最佳答案
您可以简单地将其添加到您的 while 循环中:
if(cin.fail()) {
break;
}
同时检查 this回答,对你有很大帮助。
你的代码应该是这样的:
int main()
{
int x = 0;
int y = 0;
char c = {x};
char d = {y};
while (c != '|')
{
cin >> x >> y;
if(cin.fail()) {
break;
}
// later I will do stuff with x and y
}
system("pause");
return 0;
}
否则,如果你不想完全打破 while 循环,那么使用continue
而不是 break
关于c++ - 如何让 C++ 忽略不正确的输入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38683132/
我是一名优秀的程序员,十分优秀!