gpt4 book ai didi

c++ - 找不到文件或目录

转载 作者:行者123 更新时间:2023-11-30 04:46:26 24 4
gpt4 key购买 nike

我下载了 Code blocks 17.12 然后跟着:- new project:-console application:-c++

现在,当我编写以下代码时,它不会运行:-

#include<iostream>

void main()
{
std:: cout<<"Hello";
}

它显示没有找到文件或目录。奇怪的是,当我在代码块上运行 C 程序时,没有出现这样的错误。

我重新安装了几次代码块,但问题仍然存在。

我也尝试过使用工具链可执行文件然后自动检测,但它也没有帮助。

Ps:当我创建 C++ 项目时,通常出现的“Hello World”程序文件没有显示。结果是这样的: Code Blocks IDE

When I clicked on resources

最佳答案

如果您使用代码块,请确保您下载了包含所需包的版本,每个 C++ 代码都可以与标准编译器 GNU 编译器 C/С++ 一起正常工作(如果我没有遗漏带有名称的内容)。

在你的屏幕上,你没有选择任何编译器,因为 Code Blocks 很遗憾,你没有选择具有 main 函数的文件。

代码应该是这样的:

#include <iostream> // Space here.

using namespace std; // No need to write std every cout.

int main() // Int here.
{
cout<<"Hello";

return 0; // Because of int return type. In some cases it needs for right ending of program.
}

关于c++ - 找不到文件或目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56748487/

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