c ++按Enter键结束程序删除按任意键继续

时间:2014-03-18 02:01:36

标签: cin

我试图让结局像这样

    Enter your choice -->  f

    Program ending

    Press Enter to end -->

但我得到了这个

Enter your choice -->  f

Program ending

Press enter to end -->Press any key to continue . . .

这是我结束的简短代码。基本上我需要删除“按任意键继续:从结束我搜索论坛,发现和PrintF声明,但我还没有学到,所以我需要一个更简单的方法。任何帮助将不胜感激

        case 'f':
        case 'F': cout << "Program ending" << endl << endl;
                cout << "Press enter to end -->";
                cin.get();

                return 1;

            break;

        default: 
            cout << choice << " is an invalid value. " << endl;

        }

1 个答案:

答案 0 :(得分:1)

代码中的某个地方(或者您用来启动它的IDE)可能很糟糕system("pause");。找到它,删除它,再也不要输入那些单词。