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

 其实 <iostream.h>是c风格的,你可用,但注意格式: 
要么是: 
#include <iostream> 
using namespace std;  

在标准C++里面,是不用#include <iostream.h>这种形式了,而要使用#include <iostream> 

原文地址:https://www.cnblogs.com/songfeixiang/p/3733669.html