刚开始用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; 生成成功了! 谢谢!
本文详细描述了使用Visual Studio .NET 2003解决无法打开iostream.h文件的问题,通过将#include<iostream.h>改为#include<iostream>并使用using namespace std;,最终成功解决了错误提示,提供了实用的解决方案。
3231

被折叠的 条评论
为什么被折叠?



