接收输入并测试它是否是 C 中的 int 后的无限循环;

发布于 2024-12-22 19:13:18 字数 449 浏览 1 评论 0原文

我正在尝试从用户那里获取一个整数。我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

焚却相思 2024-12-29 19:13:18

如果执行 cin >> 时输入流不包含整数
步骤
,流进入错误状态,必须显式地
清除(cin.clear())。在那之前,错误状态仍然存在,并且所有
进一步尝试输入将被视为无操作。

If the input stream doesn't contain an integer when you do cin >>
steps
, the stream enters an error state, which must be explicitly
cleared (cin.clear()). Until then, the error state remains, and all
further attempts to input will be treated as no-ops.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文