定义一个Point类,派生出Rectangle类和Circle类,计算各 派生类对象的面积Area()。

急求,各位高手高高手,伸出手来来吧... 急求,各位高手高高手,伸出手来来吧 展开
 我来答
terranlong
2012-06-20 · TA获得超过7294个赞
知道大有可为答主
回答量:2660
采纳率:0%
帮助的人:3991万
展开全部
#include <iostream>
using namespace std;

#define PI 3.14

class Point
{
public:
Point() : m_x(0), m_y(0){}
Point(double x, double y) : m_x(x), m_y(y){}
~Point(){}
protected:
double m_x;
double m_y;
};

class Rectangle : public Point
{
public:
Rectangle() : Point(){}
Rectangle(double x, double y) : Point(x, y){}
~Rectangle(){}
double Area()
{
return m_x * m_y;
}
};

class Circle : public Point
{
public:
Circle() : m_r(0){}
Circle(double r) : m_r(r){}
~Circle(){}
double Area()
{
return PI * m_r * m_r;
}
private:
double m_r;
};

int main()
{
Rectangle rect(3.2, 2.1);
Circle circle(5.1);
cout << "rect area : " << rect.Area() << endl;
cout << "circle area : " << circle.Area() << endl;
return 0;
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式