在ubuntu中编译c ++程序

时间:2013-11-19 12:18:55

标签: c++ ubuntu gnu

在C ++程序中编译时存在问题

  

错误:iostream.h没有这样的文件或目录

我使用make hello hello.cpp是我的文件名。

3 个答案:

答案 0 :(得分:2)

使用

#include<iostream>

不推荐使用名称​​ iostream.h

答案 1 :(得分:1)

使用#include <iostream>代替#include <iostream.h>

如果您想知道为什么iostream.h已过时,我建议您阅读:Why is #include outdated

答案 2 :(得分:-2)

#include<iostream>
using namespace std;

这是我写的第一个代码