gpt4 book ai didi

c++ - 简单的 cin cout 代码由 "build and run"运行,但在 bin/debug/x.exe 中不起作用

转载 作者:行者123 更新时间:2023-11-28 04:20:25 27 4
gpt4 key购买 nike

我是编码新手。我只是使用代码块制作了这个简单的代码。它在“构建并运行”选项中完美运行,但在运行“.exe”文件时,它会关闭而不是在输入值时工作。

我已经重新安装了 codeblocks 两次,但仍然无法正常工作。

#include <iostream>

using namespace std;

int main()
{
int no;
cout << "Type the number u need the square of" << endl;
cin >> no;
cout << " The square of " << no << " is " << no*no << endl;

return 0;
}

最佳答案

您可以让应用程序等到您输入后再关闭。在代码末尾添加两行:

std::cout << "Press enter to quit.\n";
std::cin.ignore();

关于c++ - 简单的 cin cout 代码由 "build and run"运行,但在 bin/debug/x.exe 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55569525/

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