计算2点的距离
根据这个Point类,计算出距离.写个能运行的.
class Point
{
public:
Point(double nx=0.0,double ny=0.0):x(nx),y(ny){}
Point(Point &np):x(np.x),y(np.y){}
double GetX(){return x;}
double GetY(){return y;}
void SetX(double nx){x=nx;}
void SetY(double ny){y=ny;}
void SetPoint(Point &np){x=np.x;y=np.y;}
private:
double x,y;
};
计算2点的距离根据这个Point类,计算出距离.写个能运行的.class Point{public:Point(doub
答案:1 悬赏:20 手机版
解决时间 2021-06-08 17:21
- 提问者网友:星軌
- 2021-06-08 10:50
最佳答案
- 五星知识达人网友:十年萤火照君眠
- 2021-06-08 11:13
该题有好多种写法.我用C++写了其中的一种,代码如下:
#include
#include
using namespace std;
class Point
{
public:
Point(double nx=0.0,double ny=0.0):x(nx),y(ny){}
Point(Point &np):x(np.x),y(np.y){}
double GetX(){return x;}
double GetY(){return y;}
void SetX(double nx){x=nx;}
void SetY(double ny){y=ny;}
void SetPoint(Point &np){x=np.x;y=np.y;}
private:
double x,y;
};
int main(){
double distance;//A,B两点间的距离
Point A(1.5,2.8);
Point B(3.9,4.6);
distance = sqrt((B.GetY()-A.GetY())*(B.GetY()-A.GetY())+(B.GetX()-A.GetX())*(B.GetX()-A.GetX()));
cout
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯