QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

楼主: ruizhi

小声地问

[复制链接]
 楼主| 发表于 2004-7-28 17:53:31 | 显示全部楼层
[root@ruizhi ruizhi]# vim ex.cxx
[root@ruizhi ruizhi]# g++ ./ex.cxx
In file included from /usr/include/c++/3.3.2/backward/iostream.h:31,
                 from ex.cxx:1:
/usr/include/c++/3.3.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.
[root@ruizhi ruizhi]# ./a.out
Hello World
版主批评的是,改!
附上:
# include <iostream.h>
int main()
{
         cout<<"Hello World\n";
}
回复

使用道具 举报

发表于 2004-7-28 18:14:53 | 显示全部楼层
1.去掉  .h。原因如前有一贴所述
2.cout从哪儿来?要用名字空间将它包括进来。
[code:1] #include <iostream>
int main(){
    using namespace std;
    cout<<"Hello,World!"<<endl;
    return 0;
}[/code:1]
回复

使用道具 举报

 楼主| 发表于 2004-7-28 20:36:38 | 显示全部楼层
谢谢版主!
我是按照参考书输入的,一直以为是我的 编译器有问题,所以拿个最简单的程序来测。
回复

使用道具 举报

发表于 2004-7-28 21:34:55 | 显示全部楼层
要买好书   
回复

使用道具 举报

发表于 2004-8-2 19:10:52 | 显示全部楼层
执行的时候最好加上./表示是当前目录
回复

使用道具 举报

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

本版积分规则

GMT+8, 2024-11-7 18:15 , Processed in 0.039318 second(s), 13 queries .

© 2021 Powered by Discuz! X3.5.

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