.创建一个Rectangle类,添加两个属性width和height。在Rectangle类中添加两个方法,计算矩形的周长和面积
1个回答
展开全部
/// c++
class Rectangle
{
int width, height;
public:
Rectangle()
: width(0), height(0)
{}
Rectangle(int w, int h)
: width(w), height(h)
{}
void setWidth(int w)
{ width = w; }
int getWidth()const
{ return width; }
void setHeight(int h)
{ height = h; }
int getHeight()const
{ return height; }
int perimeter()const
{ return (width+height)*2; }
int area()const
{ return width*height; }
};
class Rectangle
{
int width, height;
public:
Rectangle()
: width(0), height(0)
{}
Rectangle(int w, int h)
: width(w), height(h)
{}
void setWidth(int w)
{ width = w; }
int getWidth()const
{ return width; }
void setHeight(int h)
{ height = h; }
int getHeight()const
{ return height; }
int perimeter()const
{ return (width+height)*2; }
int area()const
{ return width*height; }
};
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询