程序填空题,下面的程序通过把GetDis函数声明为Point类的友元函数,实现计算两点间距离功能,补充完整
#include<iostream>#include<cmath>usingnamespacestd;classPoint{doublex,y;public:Point(...
#include <iostream>
#include<cmath>
using namespace std;
class Point
{
double x,y;
public:
Point (double x0,double y0)
{
x=x0; y=y0;
}
_(1)_ double GetDis(const Point& a,const Point &b);
};
_(2)_ GetDis(const Point& a,const Point &b)
{
double dx,dy;
dx=_(3)_;
_(4)_;
}
int main()
{
point p1(1,3),p2(4,8);
cout<<GetDis (p1,p2)<<end1;
return 0;
} 展开
#include<cmath>
using namespace std;
class Point
{
double x,y;
public:
Point (double x0,double y0)
{
x=x0; y=y0;
}
_(1)_ double GetDis(const Point& a,const Point &b);
};
_(2)_ GetDis(const Point& a,const Point &b)
{
double dx,dy;
dx=_(3)_;
_(4)_;
}
int main()
{
point p1(1,3),p2(4,8);
cout<<GetDis (p1,p2)<<end1;
return 0;
} 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询