iostream.h是84年C++运行库.VC6.0的标准库是STL.找不到这个文件是正常的.我也找不到.
你要么#include
哥们的书真够怀旧的.
c++的头文件是没有 .h 的!
另,using namespace std; 跟头文件包含没有关系!
#include
using namespace std;
int main()
{
cout<<"123"<
}
头文件要用尖括号才行
#include
using namespace std;
void main(){
cout<<"123"<
}
#include
using namespace std ;
int main()
{
cout << "你好,假如看到这个了,请接纳答案!" << endl ;
return 0 ;
}