C++不能运行,提示 Cannot open include file: 'iostream': No such file or directory
#include<iostream>
using namespace std;
int main()
{
cout<<"hello C++ !"<<endl;
}
编译后错误提示为:
ha.cpp(1) : fatal error C1083: Cannot open include file: 'iostream': No such file or directory
这是什么原因造成的?求大神赐教...