码迷,mamicode.com
首页 > 其他好文 > 详细

计算两点间的距离(hdu2001)

时间:2016-10-23 07:44:56      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:code   span   math.h   stdio.h   using   #include   while   image   计算   

技术分享

注意:在C语言中,double->lf,结果保留两位小数->0.2lf

#include<stdio.h>
#include<math.h>
using namespace std;
int main()
{
    double x1,y1,x2,y2;    
    char d;
    while(scanf("%lf%lf%lf%lf%c",&x1,&y1,&x2,&y2,&d)!=EOF)
    {
        double a;
        a=sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2));
        printf("%.2lf\n",a);
    }
}

 

计算两点间的距离(hdu2001)

标签:code   span   math.h   stdio.h   using   #include   while   image   计算   

原文地址:http://www.cnblogs.com/Strugglinggirl/p/5988937.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!