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;
生成成功了!
谢谢! 展开
新建了一个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;
生成成功了!
谢谢! 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询