fatal error C1083: Cannot open include file: 'fstream.h': No such file or directory
之后我百度了一下,据说是因为fstream.h是比较旧的标准,必须改用标准的c++写法才行。
后来找到了解决的办法,就是:
把 #include <fstream.h> 改成了 #include <fstream>
using namespace std;
-------------------------------------------------------------------------------
注:
C/C++ code
#include <fstream>
#include <cstring>
#include <string>
using namespace std;
这是标准的c++写法
-------------------------------------------------------------------------------