sicily 1815 計算兩點間的距離

2021-06-07 19:30:00 字數 441 閱讀 3683

// problem#: 1815

// submission#: 1076649

// the source code is licensed under creative commons attribution-noncommercial-sharealike 3.0 unported license

// uri:

#include #include #include #include using namespace std;

class point

;point::point()

point::point(double a, double b)

double point::length(point p)

int main()

return 0;

}

計算兩點間的距離

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...