标签: c++ compilation codeblocks
严重错误:iostream.h:没有这样的文件或目录
为什么代码块在编译后返回此错误
我是C ++的初学者
答案 0 :(得分:0)
在C ++中,您需要包含iostream而不包含'h'
在此处http://www.cplusplus.com/reference/iostream/查看更多信息
答案 1 :(得分:0)
仅使用#include<iostream>,因为#include<iostream.h>在象Turbo C ++这样的旧编译器中工作。
#include<iostream>
#include<iostream.h>