设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 615|回复: 6
打印 上一主题 下一主题

#include和#include有什么区别?

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-3 00:52:35 | 只看该作者 回帖奖励 |正序浏览 |阅读模式
如下程序是正确的:
#include<iostream>
using namespace std;
int main()
{
int a;
cin>>a;
while(cin.fail())
{
cout<<"input a value,please : ";
cin.clear();
cin.sync();
cin>>a;
}
cout<<a<<endl;
system("pause");
return 0;
}
但是要改为:
#include<iostream.h>
int main()
{
int a;
cin>>a;
while(cin.fail())
{
cout<<"input a value,please : ";
cin.clear();
cin.sync();
cin>>a;
}
cout<<setw(6)<<a<<endl;
system("pause");
return 0;
}
为什么就错了?
改为:
#include<iostream.h>
#include<iostream>
using namespace std;
int main()
{
int a;
cin>>a;
while(cin.fail())
{
cout<<"input a value,please : ";
cin.clear();
cin.sync();
cin>>a;
}
cout<<setw(6)<<a<<endl;
system("pause");
return 0;
}
为什么也错了?
这两个头文件
#include<iostream.h>
#include<iostream>有什么区别?
请指点啊,斑竹!
7#
发表于 2009-11-3 00:52:45 | 只看该作者
谢谢!
回复 支持 反对

使用道具 举报

6#
发表于 2009-11-3 00:52:44 | 只看该作者
#include <iostream>
using namespace std;
这个是标准的写法(最好用这种写法)
#include <iostream.h>是老版本的写法
两个头文件是一样的
正确的写法就是你三楼写的
setw()函数应包含头文件<iomanip>
回复 支持 反对

使用道具 举报

5#
发表于 2009-11-3 00:52:43 | 只看该作者
#include<iostream>
using namespace std;
和#include<iostream.h>应改作用是一样的,编译器没有问题吗
回复 支持 反对

使用道具 举报

4#
发表于 2009-11-3 00:52:41 | 只看该作者
但是我的问题还没有解决啊,1楼的问题我仍然很迷惑的。
请大家指教。
回复 支持 反对

使用道具 举报

3#
发表于 2009-11-3 00:52:39 | 只看该作者
是不是改成这样就可以了?
#include <iomanip>
#include<iostream>
using namespace std;
int main()
{
int a;
cin>>a;
while(cin.fail())
{
cout<<"input a value,please : ";
cin.clear();
cin.sync();
cin>>a;
}
cout<<setw(10)<<a<<endl;
system("pause");
return 0;
}
回复 支持 反对

使用道具 举报

2#
发表于 2009-11-3 00:52:37 | 只看该作者
要是同时出现#include&lt;iostream&gt;头文件和setw()函数而不出现#include&lt;iostream.h&gt;头文件该怎么办?
回复 支持 反对

使用道具 举报

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

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 03:33 , Processed in 0.088427 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

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