Dev-C ++无法找到I / O流头文件。我尝试了#include <iostream>
和#include <iostream.h>
但我收到了以下错误。
[Error] iostream.h: No such file or directory
[Error] iostream: No such file or directory
我可以在Dev-C ++设置中查看哪些内容以确保它已正确配置以构建使用C ++标准库的程序?
答案 0 :(得分:1)
#include <iostream>
就我所见,你的代码中有一个双重',这可能会导致问题。如果包含“iostream”头文件也无法正常工作,则意味着您的Dev-C ++(原文如此!)可能无法与MinGW正确链接。
正如其他人所说,考虑使用f.e. Code :: Blocks而不是Dev-C ++。
答案 1 :(得分:-2)
如果您没有下载包含MinGW的Dev C ++,那么您就没有标准库。如果您有标准库,则需要确保按pointing it to the location of the source on your system进行设置。
如果您仍然需要标准库,则可以访问&#34;下载&#34; this page的一部分,然后转到包含MinGW的第一个链接。
但你最好的选择是将Dev C ++发送给火灾。功能强大的Visual Studio 2015已经推出,社区版本是免费的:https://www.visualstudio.com/downloads/download-visual-studio-vs在Windows上使用其他任何东西都没有借口。