C++输入错误,带有开关陈述和功能

发布于 2025-02-10 05:50:48 字数 1488 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

左岸枫 2025-02-17 05:50:48

该错误在于book_choice switch:

        switch (book_choice)
        {
            case 1:
                book1();
                // missing break;
            case 2:
                book2();
                // missing break;
            case 3:
                book3();
                // missing break;
            default:
                break;
        }

您忘记在每种情况下忘记使用break;。开关中的默认行为是掉落并执行下一个情况。这意味着您总是最终执行book3(),并将您的书设置为“ Python编程”

The error lies in the book_choice switch:

        switch (book_choice)
        {
            case 1:
                book1();
                // missing break;
            case 2:
                book2();
                // missing break;
            case 3:
                book3();
                // missing break;
            default:
                break;
        }

You forgot to use break; after each case. The default behaviour in a switch is to fall through and execute the next case. That means you always end up executing book3() and setting your book to "Python Programming".

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