菜鸟的我,求助,求坐标距离
#include<stdio.h>#include<math.h>
int main()
{
double x1,x2,y1,y2;
while(1)
{
scanf("%lf %lf %lf %lf",&x1,&y1,&x2,&y2);
printf("%.2lf\n", pow( (sqrt((x1-x2))+(sqrt(y1-y2)) ) ,(1/2) ) );
}
return 0;
}
这是错在哪。。我的结果一直是1.00不知道怎么改正。求高手