C 使用類計算兩點間的距離

2021-09-13 20:36:02 字數 624 閱讀 4574

使用類計算兩點間的距離

還是使用友元比較好,在類中宣告友元後無需特意定義乙個引用的物件。

/*方法一:不可取,但是也能滿足效果*/

#include #include using namespace std;

class point

point(float a,float b)

double distance(point a,point b);

};double point::distance(point a,point b)

void main()

point(float a,float b)

friend double distance(point a,point b);

};/*friend在類外定義的時候無需加friend標識

*/double distance(point a,point b)

void main(){

point point1(5,5),point2(5,7);

cout效果:

計算兩點間的距離

problem description 輸入兩點座標 x1,y1 x2,y2 計算並輸出兩點間的距離。input 輸入資料有多組,每組佔一行,由4個實數組成,分別表示x1,y1,x2,y2,資料之間用空格隔開。output 對於每組輸入資料,輸出一行,結果保留兩位小數。sample input 0 ...

計算兩點間的距離

三 展示 本題計算兩個座標之間的距離,運用了數學公式勾股定理,a2 b2 c2其中b與c為直角邊,a為斜邊,及兩點之間的距離。problem description 輸入兩點座標 x1,y1 x2,y2 計算並輸出兩點間的距離。input 輸入資料有多組,每組佔一行,由4個實數組成,分別表示x1,y...

1063 計算兩點間的距離

1063 計算兩點間的距離 description 輸入兩點座標 x1,y1 x2,y2 計算並輸出兩點間的距離。input 輸入資料有多組,每組佔一行,由4個實數組成,分別表示x1,y1,x2,y2資料之間用空格隔開。output 對於每組輸入資料,輸出一行,結果保留兩位小數。sample inp...