QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 782|回复: 8

c++ sos!!! 加急!!!!!!!!!!!!!!!!!

[复制链接]
发表于 2003-5-27 18:38:45 | 显示全部楼层 |阅读模式
我的rh9在编译c++的时候,连cout和endl都说没有声明,怎么办啊?
最简单的程序
#include  "iostream"
using namespace.std;
int main()
{
             cout << "Hello World!" << endl;
              return 0;
}

程序应该没有问题吧!
如果是编译器的问题,我在安装mplayer时也没有问题,怎么办??????
加急,在线等!!
 楼主| 发表于 2003-5-27 18:57:20 | 显示全部楼层
上面的程序我又改了一下:
#include "iostream.h"

int main()
{
        cout << "Hellw World!" << endl;
        return 0;
}
就可以编译通过了

但是出了Warring"
In file included from /usr/include/c++/3.2.2/backward/iostream.h:31,
                 from a.cc:1:
/usr/include/c++/3.2.2/backward/backward_warning.h:32:2: warning: #warning This file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples include substituting the <X> header for the <X.h> header for C++ includes, or <sstream> instead of the deprecated header <strstream.h>. To disable this warning use -Wno-deprecated.

什么意思啊??

我是刚装上9.0的,它和rh8又作了哪 些改动呢?
回复

使用道具 举报

发表于 2003-5-27 19:25:41 | 显示全部楼层
#include <iostream>
using namespace std;

int main()
{
cout &lt;&lt; "Hellw World!" &lt;&lt; endl;
return 0;
}
回复

使用道具 举报

发表于 2003-5-28 10:43:48 | 显示全部楼层
#include "iostream"

int main()
{
std::cout &lt;&lt; "Hello World!" &lt;&lt; std::endl;
return 0;
}
回复

使用道具 举报

发表于 2003-5-28 13:09:20 | 显示全部楼层
把你编译的命令贴上来
回复

使用道具 举报

发表于 2003-5-28 19:11:10 | 显示全部楼层
#include <iostream>
using namespace std;
int main()
{
         cout &lt;&lt; "Hello world." &lt;&lt; endl;
          return 0;
}

g++ -o main main.cpp
回复

使用道具 举报

发表于 2003-5-28 20:43:49 | 显示全部楼层
#include <iostream">
using namespace std;
int main()
{
cout &lt;&lt; "Hello World!" &lt;&lt; endl;
return 0;
}

RH9 &amp;&amp; g++ 编译通过
回复

使用道具 举报

发表于 2003-5-28 20:49:36 | 显示全部楼层
i use this

#include <iostream.h>
int main()
{
cout &lt;&lt; "Hello World!" &lt;&lt; endl;
return 0;
}

it always ok!
回复

使用道具 举报

发表于 2003-5-29 11:18:20 | 显示全部楼层
[code:1]

#include &lt;iostream&gt;

using namespace std;

int main&#40;&#41;
&#123;
       cout &lt;&lt; &quot;Hello World&quot; &lt;&lt; endl;
       return 0;
&#125;

[/code:1]
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-15 17:32 , Processed in 0.068240 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

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