为什么每次编程都会出现fatal error : 'iostream': No such file or directory 我使用codeblocks12.11的

如题所述

第1个回答  2013-10-07
1、应该是这样编写的吧?
#include <iostream>
using namespace std;
2、检查下codeblocks的设置是否没有包含库的路径
建议重装下codeblocks,然后选择默认编译器GUN gcc compiler本回答被提问者采纳

...error : 'iostream': No such file or directory 我使用codeblocks12....
1、应该是这样编写的吧?include <iostream> using namespace std;2、检查下codeblocks的设置是否没有包含库的路径 建议重装下codeblocks,然后选择默认编译器GUN gcc compiler

...error : 'iostream': No such file or directory 我使用codeblocks12....
1、应该是这样编写的吧?include <iostream> using namespace std;2、检查下codeblocks的设置是否没有包含库的路径 建议重装下codeblocks,然后选择默认编译器GUN gcc compiler

...file: 'iostream': No such file or directory
1 “ iostream”这个文件名写错了 2 “ iostream”这个文件丢了 3 “ iostream”这个文件被放在编译程序找不到的地方

...文件:“windows.h”: No such file or directory
源代码引用该头文件的路径不对。解决方法如下参考:1.删除所有以前手动添加的路径,恢复平台工具设置为默认的第一个,编译后或第一个问题无法打开包含文件:“winsdkver。”h":没有这样的文件或目录,看了一下常规的include目录下是这个样子的;2.首先在注册表中搜索路径的字符串,删除,重新打开vs2012或...

fatal error: iostream: No such file or directory这个错误怎么改正...
错误信息说没有 这样的 文件名 和 文件夹。检查 文件名 和 文件夹 是否 拼写 有错。iostream, 一般用在 头文件:include <iostream>

...file: 'stdio .h': No such file or directory
在C语言中出现: Cannot open include file: 'stdio .h': No such file or directory是设置错误造成的,解决方法为:1、输出编译器中进行编译。2、编译成功,无错误。3、进行组建,组建时出现错误。4、选中vc++6.0程序,右键选择”以管理员身份运行此程序“ ,运行程序,进行编译该程序。无错误。5...

fatal error: iostream no such file or directory
你头文件的的目录是不是设置的有问题!

...文件:“windows.h”: No such file or directory
因为 #include 后面的包含的文件时,如果使用的是 "<>" 尖括号的话, 表示让编译器在系统头文件夹中查找对应名字的头文件, 当使用"""引号时,就是让编译器在当前程序目录下查找对应名字的头文件,如果没有找到,则编译器会再在系统头文件夹中查找该头文件. 所以,这里,你应该把 #include <class.h> ...

...无法打开包含文件:“iostream.h”: No such file or directory...
iostream.h已经不被.net支持了,你要用的话加上using namespace std;include "stdafx.h"include<iostream.h> using namespace std;int _tmain(int argc, _TCHAR* argv[]){ cout<<"hello"<<endl;return 0;}

编译C++时总是提示 No such file or directory 怎么回事啊
你看一下错误指向的文件(夹)是不是还在。C++ \/ C 通常都集成在同一个编译器中的。

相似回答