#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<math.h>
int main()
{
    double x1,x2,y1,y2,s;
    while(scanf("%lf%lf%lf%lf",&x1,&y1,&x2,&y2)!=EOF)
    {
         s=sqrt(((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2)));
         printf("%.2lf\n",s);
    }
   // system("pause");
    return 0;
}
posted on 2011-07-15 17:50  枫叶飘泪  阅读(462)  评论(0编辑  收藏  举报