/*Copyright (c)2016,烟台大学计算机与控制工程学院
*All rights reserved.
*文件名称:main.cpp
*作 者:刘亚
*完成日期:2016年5月14日
*版 本 号:v1.0
*
完成求点类中距离的任务。你需要实现求距离函数的三种版本:分别利用成员函数、友元函数和一般函数求两点间距离的函数,并设计main()函数完成测试。
#include <iostream>
#include<Cmath>
using namespace std;
class CPoint
{
private:
double x;
double y;
public:
CPoint(double xx=0,double yy=0):x(xx),y(yy){}
friend void dist(CPoint &,CPoint &);
};
void dist(CPoint &p1,CPoint &p2)
{
double x;
x=sqrt((p1.x-p2.x)*(p1.x-p2.x)+(p1.y-p2.y)*(p1.y-p2.y));
cout<<x;
}
int main()
{
CPoint t1(1,3),t2(2,4);
dist(t1,t2);
return 0;
}