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

2024年12月03日 11:08
有1个网友回答
网友(1):

iostream.h已经不被.net支持了,你要用的话加上using namespace std;
#include "stdafx.h"
#include
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
cout<<"hello"<return 0;
}