当前位置: 代码迷 >> C语言 >> hdu2001解决思路
  详细解决方案

hdu2001解决思路

热度:5245   发布时间:2013-02-26 00:00:00.0
hdu2001
http://acm.hdu.edu.cn/showproblem.php?pid=2001
一道很简单的题不知道哪里错了,一直是wa感觉没有错呀,就是ac不过去

#include <stdio.h>
#include <stdlib.h>



int main()
{
    double  x1,x2,y1,y2,res;
    while(scanf("%lf %lf %lf %lf",&x1,&y1,&x2,&y2)!=EOF)
    {
        res=sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2));
        printf("%.2lf\n",res);

    }

    return 0;
}

------解决方案--------------------------------------------------------
ok..我加了一行  #include<math.h> 就过了..
------解决方案--------------------------------------------------------
楼上正解,sqrt是包含在math.h这个头文件中的
  相关解决方案