gpt4 book ai didi

c++ - Codelite C++ 程序未编译和运行

转载 作者:行者123 更新时间:2023-11-30 03:54:29 25 4
gpt4 key购买 nike

我昨天安装了 codelite 7.0,并一直在尝试使用它。但是好像有点问题。我无法运行任何代码。现在代码非常简单。

#include <stdio.h>

int main(int argc, char **argv)
{
printf("hello world\n");
return 0;
}

但是,它返回以下内容并且输出为空白,Press any key to continue

Current working directory: D:\ .....

Running program: le_exec.exe ./1

Program exited with return code: 0

最佳答案

你的程序运行良好,唯一的问题是在 printf 程序返回 0 并立即关闭后,它确实运行并打印出“hello world”,你只是没有是时候看看了。

要使程序等待用户输入以便您可以看到输出,请使用 cin.get() :

#include <stdio.h>
#include <iostream>

int main(int argc, char **argv)
{
printf("hello world\n");
std::cin.get();
return 0;
}

关于c++ - Codelite C++ 程序未编译和运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29496999/

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