刚学C++ 这个程序找不到哪里错 求高手指点一下

#include<iostream>#include<algorithm>//头文件#include<functional>usingnamespacestd;voidm... #include<iostream>
#include<algorithm> //头文件
#include<functional>
using namespace std;
void main(){
double a[]={1.1,4.4,3.3,2.2},b[4];
copy(a,a+4,ostream_iterator<double>(cout," "));
cout<<endl;
reverse_copy(a,a+4,ostream_iterator<double>(cout," "));
cout<<endl;
copy(a,a+4,b);
copy(b,b+4,ostream_iterator<double>(cout," "));
cout<<endl;
reverse_copy(b,b+4,ostream_iterator<double>(cout," "));
sort(a,a+4);
copy(a,a+4,ostream_iterator<double>(cout," "));
cout<<endl;
sort(a,a+4,greater<double>());
copy(a,a+4,ostream_iterator<double>(cout," "));
cout<<endl;
reverse_copy(a,a+4,b);
copy(b,b+4,ostream_iteratorr<double>(cout,"\n"));
cout<<endl;
double *x=find(a,a+4,4.4);
if( x==a+4) cout<<"没有值为4.4的数组元素";
else cout<<"有值为"<<*x<<"的数组元素";
cout<<endl;
}
报错是
x.exe - 1 error(s), 0 warning(s)
展开
 我来答
zcy990718
2013-07-30 · TA获得超过1.2万个赞
知道大有可为答主
回答量:1.2万
采纳率:66%
帮助的人:1548万
展开全部
#include<iostream>
#include<algorithm> //头文件
#include<functional>
using namespace std;
void main(){
double a[]={1.1,4.4,3.3,2.2},b[4];
copy(a,a+4,ostream_iterator<double>(cout," "));
cout<<endl;
reverse_copy(a,a+4,ostream_iterator<double>(cout," "));
cout<<endl;
copy(a,a+4,b);
copy(b,b+4,ostream_iterator<double>(cout," "));
cout<<endl;
reverse_copy(b,b+4,ostream_iterator<double>(cout," "));//不是
sort(a,a+4);
copy(a,a+4,ostream_iterator<double>(cout," "));
cout<<endl;
sort(a,a+4,greater<double>());
copy(a,a+4,ostream_iterator<double>(cout," "));
cout<<endl;
reverse_copy(a,a+4,b);
copy(b,b+4,ostream_iterator<double>(cout,"\n"));//ostream_iteratorr拼写错
cout<<endl;
double *x=find(a,a+4,4.4);
if( x==a+4) cout<<"没有值为4.4的数组元素";
else cout<<"有值为"<<*x<<"的数组元素";//分号写成了中文的
cout<<endl;
}
Ken_Wu_Jay
2013-07-30 · TA获得超过1654个赞
知道小有建树答主
回答量:527
采纳率:0%
帮助的人:291万
展开全部
这句话是说有1个错误,0个警告,你没看到报的什么错?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式