大家好,这个程序向大家请教一下,谢谢啦
#include<iostream>//求两个点之间的距离#include<cmath>
using namespace std;
class point
{
public:
point(double xx,double yy)
{
x=xx;
y=yy;
}
double getx(){return x;}
double gety(){return y;}
double distance(const point &p)//这一行是什么意思
{
x-=p.x;//p.x和p.y是什么意思
y-=p.y;
return sqrt(x*x+y*y);
}
private:
double x;
double y;
};
int main()
{
point A(1,2),B(3,4);
cout<<A.distance(B)<<endl;//这一行是什么意思呀
return 0;
}