第十一周项目实践1————点—圆类设计

问题及代码:

/*copyright(c)2016.烟台大学计算机学院
 * All rights reserved,
 * 文件名称:text.Cpp
 * 作者:吴敬超
 * 完成日期:2016年5月4日
 * 版本号:codeblock
 *
 * 问题描述:  点-圆类设计
 * 输入描述:
 * 程序输出: 输出结果
 */
#include<iostream>
using namespace std;
class Point
{
public:
    Point(double x=0,double y=0);
    double getX()
    {
        return x;
    }
    double getY()
    {
        return y;
    }
    void setPoint(double,double);
    void show();
protected:
    double x;
    double y;
};
Point::Point(double x,double y)
{
    this->x=x;
    this->y=y;
}
void Point::setPoint(double x,double y)
{
    this->x=x;
    this->y=y;
}
void Point::show()
{
    cout<<"该点坐标为"<<x<<","<<y<<endl;
}
class Circle:public Point
{
public:
    Circle(double a=0,double b=0,double r=0);
    void setRadius(double);
    void show();
    double getRadius( ) const
    {
        return rd;
    }
    double area()const;
protected:
    double rd;
};
Circle::Circle(double a,double b,double r):Point(a,b),rd(r){}
void Circle::setRadius(double r)
{
    rd=r;
}
double Circle::area()const
{
    return 3.14*rd*rd;
}
void Circle::show()
{
    cout<<"圆的面积为的"<<area()<<endl;
}
int main()
{
    Circle c(3.5,6.4,5.2);
    c.show();
    c.setPoint(5,5);
    c.show();
    return 0;
}
运行结果:

第十一周项目实践1————点—圆类设计_第1张图片

学习心得:

本次练习学会了派生类的构造函数和基类的调用

你可能感兴趣的:(第十一周项目实践1————点—圆类设计)