题目描述
两个点P1和P2,其中P1的坐标为(x1,y1),P2的坐标为(x2,y2)
计算两点间的距离
要添加数学函数来开方
样例
#include<iostream>
#include<cstdio>
#include<math.h>
using namespace std;
int main()
{
double x1,x2,y1,y2,d;
scanf("%lf %lf\n%lf %lf",&x1,&y1,&x2,&y2);
d=sqrt((x2-x1)*(x2-x1)+(y2-y1)*(y2-y1));
printf("%.4lf",d);
return 0;
}