注册 登录
编程论坛 C++教室

大家帮俺看看这是什么错误啊!

q3752110 发布于 2010-03-13 16:52, 331 次点击
--------------------Configuration: txt - Win32 Debug--------------------
Compiling...
txt.cpp
f:\c++学习\microsoft visual studio\vc98\include\iostream.h(52) : fatal error C1083: Cannot open include file: 'ios.h': No such file or directory
Error executing cl.exe.

txt.exe - 1 error(s), 0 warning(s)

俺是个超级大菜鸟!大牛们帮俺看看!
5 回复
#2
llooppzhang2010-03-13 16:53
iostream.h???
#3
q37521102010-03-13 20:05
回复 2楼 llooppzhang
#include"iostream.h"
int main()
{
    cout<<"My Own World!";
    return 0;
}
这是俺照书上写的!有什么错误吗?
#4
hahayezhe2010-03-13 20:12

#include"iostream"
#5
q37521102010-03-13 20:47
#include"iostream"
改成这个也是一样啊?
#6
wei00002010-03-13 21:58
你肯定是把头文件“iostream.h”写成了“ios.h”,所以才会出现错误啊
1