杭电oj 计算两点间的距离

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

}

 

posted @ 2019-03-31 15:45  pipiforever  阅读(300)  评论(0编辑  收藏  举报