我目前正在为我的 C++ 编程尝试代码块,但我无法编译它,我过去没有遇到过这个问题,而且我最近才开发它,我徒劳地在谷歌上搜索了一个解决方案和我最接近的是Code::Blocks 编译错误 ,它没有解决我的问题,我已经尝试了很多次来卸载和安装 codeblocks 和 mingw。错误是:
1|fatal error: iostream: No such file or directory|
||=== Build finished: 1 errors, 0 warnings (0 minutes, 0 seconds) ===|
在我的设置中,它只是一个基本的 hello world 程序,我将 c++ 编译器列为 mingw32-g++.exe。我一直在努力让这个工作好几天,请帮忙。
#include <iostream>
using namespace std;
int main()
{
cout << "hello world\n";
return 0;
}