​7-1 两点间距离计算分数 20全屏浏览题目切换布局作者 余春艳单位 浙江大学给出下面的一个基类框架:class Point_1D{ protected:

这篇博客展示了如何使用C++编程语言来计算一维、二维和三维空间中两点之间的距离。通过定义基类`Point_1D`并继承到`Point_2D`和`Point_3D`,博主实现了一个通用的距离计算方法,覆盖了一维、二维和三维场景。在`main`函数中,程序接受用户输入以确定计算哪种类型的距离,并输出结果。
摘要由CSDN通过智能技术生成

#include<iostream>
#include<cmath>
using namespace std;
class Point_1D
{ protected:
    float x;
public:
    Point_1D(float p = 0.0);
    float distance(const Point_1D & p2);
};
Point_1D::Point_1D(float p){x=p;}
class Point_2D:public Point_1D{protected:float y;
    public:Point_2D(float y1=0,float x1=0)
          {y=y1;x=x1;}
        float distance(const Point_2D & p2);};
class Point_3D:public Point_2D{protected:float z;     
public: Point_3D(float y1=0,float x1=0,float z1=0)
{y=y1,x=x1,z=z1;}
       float distance(const Point_3D & p2);};
float Point_1D::distance(const Point_1D & p2)
{return fabs(this->x-p2.x);}
float Point_2D::distance(const Point_2D & p2)
{return sqrt((this->x-p2.x)*(this->x-p2.x)+(this->y-p2.y)*(this->y-p2.y));
            }

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值