无法打开包含文件:“iostream.h”: No such file or directory
#include"stdafx.h"#include<iostream.h>usingnamespacestd;voidmain(){inta=1;b=2,m=3,n=4...
#include"stdafx.h"
#include<iostream.h>
using namespace std;
void main()
{
int a=1;b=2,m=3,n=4,x,y;
x=-m++;
x=x+8/++n;
y=(n=b>a)||(m=a<b);
cout<<"m="<<m<<endl;
cout<<"n="<<n<<endl;
cout<<"x="<<x<<endl;
cout<<"y="<<y<<endl;
}
------ 已启动生成: 项目: 运算符优先级, 配置: Debug Win32 ------正在编译...
运算符优先级.cpp
d:\c\运算符优先级\运算符优先级.cpp(2) : fatal error C1083: 无法打开包含文件:“iostream.h”: No such file or directory生成日志保存在“file://d:\c\运算符优先级\Debug\BuildLog.htm”中
运算符优先级 - 1 错误,0 警告
---------------------- 完成 --------------------- 生成: 0 已成功, 1 已失败, 0 已跳过 展开
#include<iostream.h>
using namespace std;
void main()
{
int a=1;b=2,m=3,n=4,x,y;
x=-m++;
x=x+8/++n;
y=(n=b>a)||(m=a<b);
cout<<"m="<<m<<endl;
cout<<"n="<<n<<endl;
cout<<"x="<<x<<endl;
cout<<"y="<<y<<endl;
}
------ 已启动生成: 项目: 运算符优先级, 配置: Debug Win32 ------正在编译...
运算符优先级.cpp
d:\c\运算符优先级\运算符优先级.cpp(2) : fatal error C1083: 无法打开包含文件:“iostream.h”: No such file or directory生成日志保存在“file://d:\c\运算符优先级\Debug\BuildLog.htm”中
运算符优先级 - 1 错误,0 警告
---------------------- 完成 --------------------- 生成: 0 已成功, 1 已失败, 0 已跳过 展开
2个回答
2013-09-07
展开全部
把#include <iostream.h>改成#include <iostream>试试......
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-09-07
展开全部
#include"stdafx.h"
#include<iostream>
using namespace std;
void main()
{ int a=1,b=2,m=3,n=4,x,y;
x=-m++;
x=x+8/++n;
y=(n=b>a)||(m=a<b);
cout<<"m="<<m<<endl;
cout<<"n="<<n<<endl;
cout<<"x="<<x<<endl;
cout<<"y="<<y<<endl;}正确的应该是这样的 检查无误。
#include<iostream>
using namespace std;
void main()
{ int a=1,b=2,m=3,n=4,x,y;
x=-m++;
x=x+8/++n;
y=(n=b>a)||(m=a<b);
cout<<"m="<<m<<endl;
cout<<"n="<<n<<endl;
cout<<"x="<<x<<endl;
cout<<"y="<<y<<endl;}正确的应该是这样的 检查无误。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询