Shape系列-7

2020年1月17日 1412点热度 0人点赞 0条评论

Shape系列-7

时间: 1ms        内存:128M

描述:

小强做的Shape类在本次的测试中出了点状况,发现原来是其中的area函数的问题,请大家根据题意,帮助小强完成改动后的Shape类。
小强写的各种类
class Rectangle:public Shape
{
public:
 Rectangle(int c,double w,double h);
 double getwidth();
 double getheight();
 double area();
 double price();
protected:
 double height;
 double width;
};
Rectangle::Rectangle(int c,double w,double h):Shape(c)
{
 width=w;
 height=h;
}
double Rectangle::getwidth()
{
 return width;
}
double Rectangle::getheight()
{
 return height;
}
double Rectangle::area()
{
 return height*width;
}
double Rectangle::price()
{
 return height*width*color;
}  
class Circle:public Shape
{
public:
 Circle(int c,double r);
 double getradius();
 double area();
 double price();
protected:
 double radius;
};  
Circle::Circle(int c,double r):Shape(c)
{
 radius=r;
}
double Circle::getradius()
{
 return radius;
}
double Circle::area()
{
 return PI*radius*radius;
}
double Circle::price()
{
 return PI*radius*radius*color;
}
class Triangle:  public Shape
{
public:
 Triangle(int c,double b,double h);
 double area();
protected:
 double base,height;
};
Triangle::Triangle(int c,double b,double h):Shape(c)
{
 base=b;height=h;
}
double Triangle::area()
{
 return 0.5*base*height;
}
int main()
{
 Shape *pt[3];
 Rectangle rr(1,1,1);
 Circle cc(2,1);
 Triangle tt(2,1,3);
 pt[0]=&rr;
 pt[1]=&cc;
 pt[2]=&tt;
 cout<<"Rectangle area:"<<pt[0]->area()<<endl;
 cout<<"Circle area:"<<pt[1]->area()<<endl;
 cout<<"Triangle area:"<<pt[2]->area()<<endl;
return 0; 
}
提示:不用提交全部程序,只提交补充部分(包括头文件和π的定义)。

输入:

输出:

小强测试的各个类面积的数据

示例输入:

示例输出:

Rectangle area:1
Circle area:3.14
Triangle area:1.5

提示:

参考答案:

解锁文章

没有看到答案?微信扫描二维码可免费解锁文章

微信扫描二维码解锁

使用微信扫描二维码打开广告页面后可以立即关闭,再刷新此页面即可正常浏览此文章

所跳转广告均由第三方提供,并不代表本站观点!

已经扫描此二维码?点此立即跳转

code

这个人很懒,什么都没留下

文章评论