友元函数计算两点间的距离

/*
*Copyright (c) 2016,烟台大学计算机学院
*All rights reserved.
*文件名称:text.cpp
*作者:汤善晔
*完成日期:2016年9月1日
*版本号:v1.0
问题描述:用友元函数计算两点间的距离
*/#include
#include
using namespace std;
class Point
{
public:
    Point(int x=0,int y=0):x(x),y(y){}
    int getX(){return x;}
    int getY(){return y;}
     friend float dist(Point&p1,Point&p2);
private:
    int x,y;
};
float dist(Point &p1,Point &p2)
{
    double x=p1.x-p2.x;
    double y=p1.y-p2.y;
    return static_cast(sqrt(x*x+y*y));
    }
    int main()
    {
        Point p1(2,3),p2(5,9);




        cout<<"the distance is:";
        cout<
        return 0;


    }

友元函数计算两点间的距离_第1张图片

你可能感兴趣的:(c++)