定义一个Point类,其属性包括点的坐标,提供计算两点之间的距离
定义一个Point类,其属性包括点的坐标,提供计算两点之间距离的方法定义一个矩形类,其属性包括左上角和右下角两个点,提供计算面积的方法创建一个矩形对象,提示用户输入矩形左...
定义一个Point类,其属性包括点的坐标,提供计算两点之间距离的方法
定义一个矩形类,其属性包括左上角和右下角两个点,提供计算面积的方法
创建一个矩形对象,提示用户输入矩形左上角和右下角的坐标
观察矩形对象以及Point类成员的构造函数与析购函数计算其面积,并输出 要求:在Point类中定义一个double数组,矩形类 继承Point类 展开
定义一个矩形类,其属性包括左上角和右下角两个点,提供计算面积的方法
创建一个矩形对象,提示用户输入矩形左上角和右下角的坐标
观察矩形对象以及Point类成员的构造函数与析购函数计算其面积,并输出 要求:在Point类中定义一个double数组,矩形类 继承Point类 展开
2个回答
2013-07-15
展开全部
c++#include
#include
#include
using namespace std;class Point
{double x,y;<br>friend class Rectangle;<br>public:<br>Point()<br>{x=y=0;}
Point(double a,double b)
{x=a;y=b;}
double distance(Point& p1,Point& p2)
{return sqrt((p1.x-p2.x)*(p1.x-p2.x)+(p1.y-p2.y)*(p1.y-p2.y));<br>double distance(Point& p)<br>{return sqrt((x-p.x)*(x-p.x)+(y-p.y)*(y-p.y));<br>}
};class Rectangle
{Point lefttop,rightdown;<br>public:<br>Rectangle()<br>{Point lefttop,rightdown;<br>}
Rectangle(Point &p1,Point &p2)
{lefttop=p1;<br>rightdown=p2;<br>}
double area()
{
return abs((lefttop.x-rightdown.x)*(lefttop.y-rightdown.y));
}
};int main ()
{double a,b,c,d,area;<br>cout < < "Please enter the lefttop corner and the rightdown corner coordinates" << endl;<br>cin >> a >> b >> c >> d;<br>Point p1(a,b);<br>Point p2(c,d);<br>Rectangle s(p1,p2);<br>area=s.area();<br>cout < < "The area of the rectangle is " << area << endl;<br>system("pause");<br>}
#include
#include
using namespace std;class Point
{double x,y;<br>friend class Rectangle;<br>public:<br>Point()<br>{x=y=0;}
Point(double a,double b)
{x=a;y=b;}
double distance(Point& p1,Point& p2)
{return sqrt((p1.x-p2.x)*(p1.x-p2.x)+(p1.y-p2.y)*(p1.y-p2.y));<br>double distance(Point& p)<br>{return sqrt((x-p.x)*(x-p.x)+(y-p.y)*(y-p.y));<br>}
};class Rectangle
{Point lefttop,rightdown;<br>public:<br>Rectangle()<br>{Point lefttop,rightdown;<br>}
Rectangle(Point &p1,Point &p2)
{lefttop=p1;<br>rightdown=p2;<br>}
double area()
{
return abs((lefttop.x-rightdown.x)*(lefttop.y-rightdown.y));
}
};int main ()
{double a,b,c,d,area;<br>cout < < "Please enter the lefttop corner and the rightdown corner coordinates" << endl;<br>cin >> a >> b >> c >> d;<br>Point p1(a,b);<br>Point p2(c,d);<br>Rectangle s(p1,p2);<br>area=s.area();<br>cout < < "The area of the rectangle is " << area << endl;<br>system("pause");<br>}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
上海华然企业咨询
2024-10-21 广告
2024-10-21 广告
上海华然企业咨询有限公司专注于AI与数据合规咨询服务。我们的核心团队来自头部互联网企业、红圈律所和专业安全服务机构。凭借深刻的AI产品理解、上百个AI产品的合规咨询和算法备案经验,为客户提供专业的算法备案、AI安全评估、数据出境等合规服务,...
点击进入详情页
本回答由上海华然企业咨询提供
2013-07-15
展开全部
非常简单你要求用什么语言编
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询