1. <legend id='k5oOW'><style id='k5oOW'><dir id='k5oOW'><q id='k5oOW'></q></dir></style></legend>

      <bdo id='k5oOW'></bdo><ul id='k5oOW'></ul>
    <tfoot id='k5oOW'></tfoot>

  2. <small id='k5oOW'></small><noframes id='k5oOW'>

    <i id='k5oOW'><tr id='k5oOW'><dt id='k5oOW'><q id='k5oOW'><span id='k5oOW'><b id='k5oOW'><form id='k5oOW'><ins id='k5oOW'></ins><ul id='k5oOW'></ul><sub id='k5oOW'></sub></form><legend id='k5oOW'></legend><bdo id='k5oOW'><pre id='k5oOW'><center id='k5oOW'></center></pre></bdo></b><th id='k5oOW'></th></span></q></dt></tr></i><div id='k5oOW'><tfoot id='k5oOW'></tfoot><dl id='k5oOW'><fieldset id='k5oOW'></fieldset></dl></div>

      立即退出 C++ 中的“while"循环

      Immediate exit of #39;while#39; loop in C++(立即退出 C++ 中的“while循环)
        <legend id='XcRum'><style id='XcRum'><dir id='XcRum'><q id='XcRum'></q></dir></style></legend>

          <bdo id='XcRum'></bdo><ul id='XcRum'></ul>

              <tbody id='XcRum'></tbody>
            <tfoot id='XcRum'></tfoot>
            • <i id='XcRum'><tr id='XcRum'><dt id='XcRum'><q id='XcRum'><span id='XcRum'><b id='XcRum'><form id='XcRum'><ins id='XcRum'></ins><ul id='XcRum'></ul><sub id='XcRum'></sub></form><legend id='XcRum'></legend><bdo id='XcRum'><pre id='XcRum'><center id='XcRum'></center></pre></bdo></b><th id='XcRum'></th></span></q></dt></tr></i><div id='XcRum'><tfoot id='XcRum'></tfoot><dl id='XcRum'><fieldset id='XcRum'></fieldset></dl></div>

              <small id='XcRum'></small><noframes id='XcRum'>

              1. 本文介绍了立即退出 C++ 中的“while"循环的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                如何立即退出 while 循环而不到块的末尾?

                How do I exit a while loop immediately without going to the end of the block?

                例如

                while (choice != 99)
                {
                    cin >> choice;
                    if (choice == 99)
                        //Exit here and don't get additional input
                    cin>>gNum;
                }
                

                有什么想法吗?

                推荐答案

                使用中断?

                while(choice!=99)
                {
                  cin>>choice;
                  if (choice==99)
                    break;
                  cin>>gNum;
                }
                

                这篇关于立即退出 C++ 中的“while"循环的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                What is inside .lib file of Static library, Statically linked dynamic library and dynamically linked dynamic library?(静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么?)
                How do I load a C DLL from the SXS in Python?(如何从 Python 中的 SXS 加载 C DLL?)
                Can Cython code be compiled to a dll so C++ application can call it?(Cython 代码可以编译成 dll 以便 C++ 应用程序可以调用它吗?)
                Delay Loading DLLs(延迟加载 DLL)
                Throwing C++ exceptions across DLL boundaries(跨 DLL 边界抛出 C++ 异常)
                Loading a dll from a dll?(从 dll 加载 dll?)

              2. <legend id='Qq4hK'><style id='Qq4hK'><dir id='Qq4hK'><q id='Qq4hK'></q></dir></style></legend>
                  <bdo id='Qq4hK'></bdo><ul id='Qq4hK'></ul>
                      <tbody id='Qq4hK'></tbody>
                        • <tfoot id='Qq4hK'></tfoot>

                        • <small id='Qq4hK'></small><noframes id='Qq4hK'>

                          <i id='Qq4hK'><tr id='Qq4hK'><dt id='Qq4hK'><q id='Qq4hK'><span id='Qq4hK'><b id='Qq4hK'><form id='Qq4hK'><ins id='Qq4hK'></ins><ul id='Qq4hK'></ul><sub id='Qq4hK'></sub></form><legend id='Qq4hK'></legend><bdo id='Qq4hK'><pre id='Qq4hK'><center id='Qq4hK'></center></pre></bdo></b><th id='Qq4hK'></th></span></q></dt></tr></i><div id='Qq4hK'><tfoot id='Qq4hK'></tfoot><dl id='Qq4hK'><fieldset id='Qq4hK'></fieldset></dl></div>