(一)計算兩點之間的距離(友元函數)

#include<iostream> #include<cmath> #define OK 1 using namespace std; class Point { public: Point(int xx=0,int yy=0) { X=xx; Y=yy; } int GetX() { return X; } int GetY() { return Y; } friend float fDist
相關文章
相關標籤/搜索