杭电2001(梦想还是要有的)

#include<stdio.h>
#include<math.h>
int main()
{
double x1,y1,x2,y2,l,a;
while(scanf("%lf %lf %lf %lf",&x1,&y1,&x2,&y2)!=EOF)
{
a=(x1-x2)*(x1-x2)+(y1-y2)*(y1-y2);
l=pow(a,0.5);
printf("%.2lf\n",l);
}
}

posted on 2015-04-20 21:12  Randy77  阅读(156)  评论(0编辑  收藏  举报

导航