CYLINDER.H
上传用户:liubin
上传日期:2022-06-13
资源大小:85k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. //习题12.1中的cylinder.h头文件
  2. //CYLINDER.H
  3. #include "circle.h"
  4. class Cylinder:public Circle
  5. {public:
  6.   Cylinder (float x=0,float y=0,float r=0,float h=0);
  7.   void setHeight(float);
  8.   float getHeight() const;
  9.   float area() const;
  10.   float volume() const;
  11.   friend ostream& operator<<(ostream&,const Cylinder&);
  12.  protected:
  13.   float height;
  14. };