注册 登录
编程论坛 VC++/MFC

vc帮助问题

m718195 发布于 2010-10-11 14:41, 296 次点击
--------------------Configuration: yy - Win32 Debug--------------------
Compiling...
yy.cpp
e:\vc6cn\vc98\include\ios(9) : fatal error C1083: Cannot open include file: 'streambuf': No such file or directory
执行 cl.exe 时出错.
Creating browse info file...
BSCMAKE: error BK1506 : cannot open file '.\Debug\yy.sbr': No such file or directory
执行 bscmake.exe 时出错.

yy.exe - 1 error(s), 0 warning(s)
这个什么错误啊
2 回复
#2
m7181952010-10-11 14:41
#include <iostream>
   int main()
   {
       std::cout<<"我喜欢c++\n";
           int x;
           
           std::cin>>x;
           std::cout<<x;

       return 0;
   }
本来要写简单这个代码
#3
hahayezhe2010-10-11 14:52
'streambuf'有这个头文件吗?不能打开文件??
你编译器才装的?
1