定义一个名为rectangle的矩形类,其属性数据为矩形坐上角和右下角的点的坐标,能计算矩形的面积。 30
定义一个名为rectangle的矩形类,其属性数据为矩形坐上角和右下角的点的坐标,能计算矩形的面积。...
定义一个名为rectangle的矩形类,其属性数据为矩形坐上角和右下角的点的坐标,能计算矩形的面积。
展开
1个回答
展开全部
struct Point
{
int x;
int y;
};
class Rectangle
{
public:
Rectangle(Point l, Point r){ cl = w; cr = h; }
void LeftTop(int x, int y){ cl.x = x; cl.y = y; }
void LeftTop(Point p){ cl = p;}
void RightBottom(int x, int y){ cr.x = x; cr.y = y; }
void RightBottom(Point p){ cr = p;}
int Area()
{
return (cr.x - cl.x) * (cr.y - cl.y);
}
private:
Point cl;
Point cr;
};
{
int x;
int y;
};
class Rectangle
{
public:
Rectangle(Point l, Point r){ cl = w; cr = h; }
void LeftTop(int x, int y){ cl.x = x; cl.y = y; }
void LeftTop(Point p){ cl = p;}
void RightBottom(int x, int y){ cr.x = x; cr.y = y; }
void RightBottom(Point p){ cr = p;}
int Area()
{
return (cr.x - cl.x) * (cr.y - cl.y);
}
private:
Point cl;
Point cr;
};
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询