LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
12
返回列表 发新帖
楼主: tuboshu

RH9.0下的 C++ 编译不过去是怎么回事?

[复制链接]
发表于 2003-6-10 21:17:58 | 显示全部楼层
[root@fire root]# g++ hello.cpp
hello.cpp:1: `iostream' was not declared in this scope
hello.cpp:2: syntax error before `using'
hello.cpp: In function `int main()':
hello.cpp:5: `cout' undeclared in namespace `std'
hello.cpp:5: `endl' undeclared in namespace `std'
[root@fire root]#

我的错误信息。我用的是RH9.0
发表于 2003-6-10 21:33:38 | 显示全部楼层

  1. #include <iostream>

  2. using namespace std;

  3. int
  4. main(void)
  5. {
  6.   cout << "hello, world!" << endl;
  7.   return 0;
  8. }
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表