// HDOJ 2001 计算两点间的距离 // @author: bos // @date: 2012.2.14 #include <stdio.h> #include <math.h> int main() { double x1, x2, y1, y2; while(scanf("%lf%lf%lf%lf", &x1, &y1, &x2, &y2)!= EOF) { printf("%.2lf\n", (double)(sqrt((x1- x2)* (x1- x2)+ (y1- y2)* (y1- y2)))); } return 0; }