用c++编写一个程序计算三角形正方形圆形三种图形的面积,要求 1.三种图形要有一个共同的基类Bas

用c++编写一个程序计算三角形正方形圆形三种图形的面积,要求1.三种图形要有一个共同的基类Base2.在其中声明一个虚函数用来求面积3.利用派生类定义三角形正方形圆形4.... 用c++编写一个程序计算三角形正方形圆形三种图形的面积,要求
1.三种图形要有一个共同的基类Base
2.在其中声明一个虚函数用来求面积
3.利用派生类定义三角形正方形圆形
4.并用数据进行测试
展开
 我来答
匿名用户
2014-12-24
展开全部
class Base
{
protected:
 float square;
public:
 Base(): square(0.0) {}
 virtual void calSquare() = 0;
};
class Square: public Base
{
private:
 float length;
public:
 Square(float len): length(len)
 {}
 virtual void calSquare()
 {
  square = length * length;
  cout << "正方衫桥举形面积是 " << square << endl;
 }
};
class Triangle: public Base
{
private:
 float bottom, height;
public:
 Triangle(float bot, float hei): bottom(bot), height(hei)
 {}
 virtual void calSquare()
 {
  square = bottom * height / 2;
  cout << "三角形面积是消消 " << square << endl;
 }
};
class Circle: public Base
{
private:
 float radius;
public:
 Circle(float r): radius(r)
 {}
 virtual void calSquare()
 {
  square = radius * radius * 3.1415926;
  cout << "圆形面积是 " << square 或碧<< endl;
 }
};
void main()
{
 Square s(4);
 Triangle t(2, 3);
 Circle c(2.5);
 s.calSquare();
 t.calSquare();
 c.calSquare();
}
谁谁还记得我
2018-12-01
知道答主
回答量:9
采纳率:0%
帮助的人:8833
展开全部
#include<iostream>
using namespace std;
class graph
{
protected:
float high,wide;
public:
graph();
graph(float h,float w)
{
high=h;wide=w;cout<<"高困闹为:"<<h<<扰信"\t宽为:"<<w<<endl;} };

class retangle:public graph
{
public:
retangle(float h,float w):graph(h,w){}
void area()
{ cout<<"矩形的面积是:"<<high*wide<<endl;}
};

class triangle:public graph
{
public:
triangle(float h,float w):graph(h,w){}
void area()
{ cout<<缓尺轮"等腰三角形的面积是:"<<high*wide/2<<endl;}
};

void main()
{ retangle g(2,3);
g.area();
triangle h(2,3);
h.area();
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式