C++问题 : fatal error C1083: Cannot open include file: 'iostream.h': No such file or directory
//3_1.cpp#include<iostream.h>doublepower(doublex,intn);intmain(){cout<<"5tothepower2i...
//3_1.cpp
#include <iostream.h>
double power (double x, int n);
int main()
{
cout << "5 to the power 2 is " << power(5,2) << endl;
//函数调用作为一个表达式出现在输出语句中。
}
double power (double x, int n)
{
double val = 1.0;
while (n--)
val *= x;
return(val);
}
运行时出现如下情况
--------------------Configuration: 3_1 - Win32 Debug--------------------
Compiling...
3_1.cpp
c:\c++\代码\example\例题源代码\ch03\3_1.cpp(2) : fatal error C1083: Cannot open include file: 'iostream.h': No such file or directory
执行 cl.exe 时出错.
3_1.obj - 1 error(s), 0 warning(s)
求各路C++大侠帮忙解决 要具体一点 嘿嘿
已经将#include <iostream.h>改为
#include <iostream>
using namespace std;但依旧不行 我用的是Vista 系统 展开
#include <iostream.h>
double power (double x, int n);
int main()
{
cout << "5 to the power 2 is " << power(5,2) << endl;
//函数调用作为一个表达式出现在输出语句中。
}
double power (double x, int n)
{
double val = 1.0;
while (n--)
val *= x;
return(val);
}
运行时出现如下情况
--------------------Configuration: 3_1 - Win32 Debug--------------------
Compiling...
3_1.cpp
c:\c++\代码\example\例题源代码\ch03\3_1.cpp(2) : fatal error C1083: Cannot open include file: 'iostream.h': No such file or directory
执行 cl.exe 时出错.
3_1.obj - 1 error(s), 0 warning(s)
求各路C++大侠帮忙解决 要具体一点 嘿嘿
已经将#include <iostream.h>改为
#include <iostream>
using namespace std;但依旧不行 我用的是Vista 系统 展开
展开全部
#include <iostream.h>把这里面的.h去掉
在VC++6.0中,包含系统自带的头文件时不需要带.h的,
在VC++6.0中,包含系统自带的头文件时不需要带.h的,
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
我同意版本问题,我编译是没有错误的
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
应该是你的编译器版本的问题,我以前也遇到同样的问题.你用的是VC++6.0的吗?是的话应该是精简版的,那就会出现这样的错,你要下个更完整版本的,我的安装文档大小应该都有180多M吧.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
将#include <iostream.h>改为
#include <iostream>
using namespace std;
就可以了。新的c++标准库摒弃了.h的头文件形式,因此是没有iostream.h文件的。
在老的编辑环境中,例如VC6里面,iostream.h的形式还是存在的,因此你的程序在VC6里面是可以编译通过的。但是vs2005及以上的版本,对应新的c++标准,引入了名字空间的概念,没有.h的形式。
具体的说明你可以参考下面链接中我的另一个回答。
问题补充:
已经将#include <iostream.h>改为
#include <iostream>
using namespace std;但依旧不行 我用的是Vista 系统
新的错误提示是什么?
我在visual studio 2005下面编译你的程序没有任何问题。不知你用的什么开发环境?
#include <iostream>
using namespace std;
就可以了。新的c++标准库摒弃了.h的头文件形式,因此是没有iostream.h文件的。
在老的编辑环境中,例如VC6里面,iostream.h的形式还是存在的,因此你的程序在VC6里面是可以编译通过的。但是vs2005及以上的版本,对应新的c++标准,引入了名字空间的概念,没有.h的形式。
具体的说明你可以参考下面链接中我的另一个回答。
问题补充:
已经将#include <iostream.h>改为
#include <iostream>
using namespace std;但依旧不行 我用的是Vista 系统
新的错误提示是什么?
我在visual studio 2005下面编译你的程序没有任何问题。不知你用的什么开发环境?
参考资料: http://zhidao.baidu.com/question/90013958.html
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询