HDU/2001/main.c

13 lines
236 B
C
Raw Normal View History

2020-08-31 16:48:58 +00:00
#include <stdio.h>
#include <math.h>
#define TWOQ(x) ((x)*(x))
int main(void){
double x1,x2,y1,y2;
while(scanf("%lf %lf %lf %lf",&x1,&y1,&x2,&y2) == 4){
printf("%.2lf\n",sqrt(TWOQ(x1-x2)+TWOQ(y1-y2)));
getchar();
}
return 0;
}