C++问题求助,下面的程序有一处错误,谁能帮忙找找

#include<iostream.h>structRectangle{floatlength,width;};voidInitRectangle(Rectangle&r... #include<iostream.h>
struct Rectangle
{
float length,width;
};
void InitRectangle(Rectangle& r,float len, float wid);
float Circumference(Rectangle& r);
float Area(Rectangle& r);
void main(void)
{
float x,y;
float p,s;
Rectangle a;
cout<<"请输入一个矩形的长和宽!"<<endl;
cin>>x>>y;
InitRectangle(a,x,y);
p=Circumference(a);
s=Area(a);
cout<<endl;
cout<<"矩形的周长为:"<<p<<endl;
cout<<"矩形的面积为:"<<s<<endl;
}
void InitRectangle(Rectangle& r,float len,float wid){
r.length=len;
r.width=wid;
}
float Circumfernce(Rectangle& r)
{
return 2*(r.length=r.width);
}
float Area(Rectangle& r)
{
return r.length*r.width;
}
展开
 我来答
nulln
2013-07-11
知道答主
回答量:22
采纳率:0%
帮助的人:21.9万
展开全部
#include <iostream.h>
struct Rectangle 
{
float length,width;
};

void InitRectangle(Rectangle &r,float len, float wid);
float Circumference(Rectangle &r);
float Area(Rectangle &r);

void main(void)
{
float x,y;
float p,s;
Rectangle a;
cout<<"请输入一个矩形的长和宽!"<<endl;
cin>>x>>y;
InitRectangle(a,x,y);
p=Circumference(a);
s=Area(a);
cout<<endl;
cout<<"矩形的周长为:"<<p<<endl;
cout<<"矩形的面积为:"<<s<<endl;
}

void InitRectangle(Rectangle &r,float len,float wid)
{
r.length=len;
r.width=wid;
}

float Circumference(Rectangle &r)  //  Circumfernce改成Circumference
{
return 2*(r.length + r.width);//这里 '=' 改成了'+'
}

float Area(Rectangle &r)
{
return r.length*r.width;
}


建议定义变量还是不要定义这么长的,难免输入错误!

float Circumference(Rectangle &r)  //  Circumfernce改成Circumference
{
return 2*(r.length + r.width);//这里 '=' 改成了'+'
}
kaixingui2012
2013-07-11 · TA获得超过4.2万个赞
知道大有可为答主
回答量:1.4万
采纳率:81%
帮助的人:6323万
展开全部
float Circumference(Rectangle& r) //这里少了一个e
{
return 2*(r.length=r.width);

}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式