求不同图形的面积_第1页
求不同图形的面积_第2页
求不同图形的面积_第3页
求不同图形的面积_第4页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、求不同图形的面积(圆,矩形,三角形,梯形)/shape.hclass shape/基类shape的定义public:virtual double getArea() const=0;/纯虚函数void print() const;virtual Shape()/需析构函数;class Circle:public Shapepublic:Circle(int=0,int=0,double=0.0);double getArea() const;/返回面积void print() const;/输出Circle类对象private:int x,y;/圆心坐标double radius;/圆半径;c

2、lass Rectangle:public Shapepublic:Rectangle(int=0,int=0);/构造函数double getAear() const;/返回面积void print() const;/输出Rectangle类对象private:int a,b;/矩形的长和宽;class triangle:public Shapepublic:triangle(int=0,int=0);/构造函数double getAear() const;/返回面积void printf() const;/输出triangle类对象private:int h,w;/三角形的高和底;clas

3、s trapezoidal:public Shapepublic:trapezoidal(int=0,int=0,int=o);/构造函数double getAear() const;/返回面积void printf() const;/输出trapezoidal类对象private:int c,d,e;/梯形的高和上底和下底;/ shape.cpp#include<iostream>using namespace std;#include"shape.h"void Shape:print()constcout<<"base class ob

4、ject"<<endl;circle:circle(int xValue,int yValue,double radiusValue)x=xValue;y=yValue;double circle:getAear() constcout<<"circle类的getAear函数,面积是"return 3.14159 * radius * radius;void circle:print() constcout<<"center is"cout<<"x="<<x<

5、<"y="<<y;cout<<",radius is"<<radius<<endl;rectangle:rectangle(int aValue,int bValue)a=aValue;b=bValue;double rectangle:getAear() constcout<<"rectangle类的getAear函数,面积是"return a * b;void rectangle:getAear() constcout<<"hight is&q

6、uot;<<a;cout<<"width is"<<b<<endl;triangle:triangle(int hValue,int wValue)h=hValue;w=wValue;double triangle:getAear() constcout<<"triangle类的getAear函数,面积是"return w * h/2;void tirangle:getAear() constcout<<"hight is"<<h;cout<&l

7、t;"base is"<<w<<endl;trapezoidal:trapezoidal(int cValue,int dValue,int eValue)c=cValue;d=dValue;e=eValue;double trapezoidal:getAear() constcout<<"trapezoidal类的getAear函数,面积是"return c * d/2 + c * e/2;void trapezoidal:getAear() constcout<<"hight is"

8、<<c;cout<<"baseline is<<e;cout<<"topline is"<<d<<endl;#include<iostream>using namespace std;#include "shape.h"void creat_object(shape *ptr);void display_area(shape *ptr);void delete_object(shape *ptr);void main()shape *shape_ptr;crea

9、t_object(&shape_ptr);display_area(shape_ptr);delete_object(shape_ptr);void creat_object(shape*ptr)char type;*ptr=NULL;docount<<"创建对象。c:circle类对象;r:rectangle类对象;t:triangle类对象;p:trapezoidal类对象"<<endl;cin>>type;switch(type)case'c':int xx,yy;double rr;cout<<

10、"请输入圆心的坐标和圆的半径:"cin>>xx>>yy>>rr;*ptr=new circle(xx,yy,rr);break;case'r':int aa,bb;cout<<"请输入矩形的长和宽:"cin>>aa>>bb;*ptr=new rectangle(aa,bb);break;case't':int hh,ww;cout<<"请输入三角形的高和底:"cin>>hh>>ww;*ptr=new triangle(hh,ww);break;case'c':int cc,dd,ee;cout<<"请输入梯形的高和上底和下底:"cin>>cc>>dd>>ee;*ptr=new trapezoidal(cc,dd,ee);break;default:cout<<"类型错误请重新选择n"while(*pt

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论