两点间距离问题
#include <cstdio>
#include <cmath>
#include <iostream>
using namespace std;
int main() {
double a,b,c,d,e;
scanf("%lf%lf", &a , &b);
scanf("%lf%lf", &c , &d);
e = sqrt((c-a)*(c-a)+(d-b)*(d-b));
printf("%.4lf", e);
return 0;
}