gpt4 book ai didi

c++ - 程序自动退出

转载 作者:行者123 更新时间:2023-11-28 05:48:00 31 4
gpt4 key购买 nike

我创建了一个简单的 .exe 文件。当我运行它时,它会自动关闭,而不是说“按任意键退出”。

这是我的程序:

#include <iostream>
#include <string>
using namespace std;
int main()
{
string answer, yes = "yes";
cout << "Is Lucy a top lass ? enter yes or no" << endl;
cin >> answer;
if (answer == yes)
{
cout << "Correctomundo" << endl;
}
else
{
cout << " Blasphemy ! " << endl;
}
return 0;
}

如何让它要求用户在退出前按任意键?

还有什么方法可以更改它,使其显示其他内容而不是“按任意键退出”?

最佳答案

添加std::getchar();在代码末尾 return 0; 之前.这将使程序等待您从标准输入(键盘)输入一个字符并在退出前按回车键(或直接按回车键)。 (尽管您可能需要在开始时输入 #include <cstdio> 才能正常工作)

如果你真的想 hacky,你可以在你的代码末尾放置一个断点(你可以学习如何做到这一点 here ),但这只有在你处于调试器模式时才有效,而不是在 Release模式...

关于c++ - 程序自动退出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35836748/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com