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;
} 展开
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;
} 展开
展开全部
#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);//这里 '=' 改成了'+'
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询