計算兩點間的距離
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 90382 Accepted Submission(s): 34566
Problem Description
輸入兩點座標(X1,Y1),(X2,Y2),計算並輸出兩點間的距離。
Input
輸入資料有多組,每組佔一行,由4個實陣列成,分別表示x1,y1,x2,y2,資料之間用空格隔開。
Output
對於每組輸入資料,輸出一行,結果保留兩位小數。
Sample Input
0 0 0 1
0 1 1 0
0 1 1 0
Sample Output
1.00
1.41
1.41
Author
lcy
#include<stdio.h>
#include<math.h>
int main()
{
double x1, x2, y1, y2;
while(scanf("%lf%lf%lf%lf", &x1, &x2, &y1, &y2) == )
printf("%.2lf\n", sqrt((x1-y1)*(x1-y1)+(x2-y2)*(x2-y2)));
return ;
}