fatal error C1083: 无法打开包含文件:“iostream.h”: No such file or directory

刚开始用Visualstudio.net2003,一个这样的例子:新建了一个win32项目:#include"stdafx.h"#include<iostream.h>i... 刚开始用Visual studio.net 2003,一个这样的例子:
新建了一个win 32项目:
#include "stdafx.h"
#include<iostream.h>

int _tmain(int argc, _TCHAR* argv[])
{
cout<<"hello"<<endl;
return 0;
}

生成时产生提示:
fatal error C1083: 无法打开包含文件:“iostream.h”: No such file or directory
Thank you!

#include<iostream.h>
using namespace std;
改为:
#include<iostream>
using namespace std;
生成成功了!

谢谢!
展开
 我来答
zeus3288
2007-04-07 · TA获得超过1312个赞
知道小有建树答主
回答量:525
采纳率:0%
帮助的人:798万
展开全部
iostream.h已经不被.net支持了,你要用的话加上using namespace std;
#include "stdafx.h"
#include<iostream.h>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
cout<<"hello"<<endl;
return 0;
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式