编写程序,计算二维平面上两点p1和p2间的直线距离。
注意:只需提交fun函数
前置代码:
#include <stdio.h>#include "math.h"
typedef struct
{
double x,y;
}POINT2D;
后置代码:
int main(){
POINT2D p1,p2;
double e;
scanf("%lf%lf",&p1.x,&p1.y);
scanf("%lf%lf",&p2.x,&p2.y);
e=fun(p1,p2);
printf("%lf\n",e);
return 0;
}