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

杭电2001 计算两点之间的距离

时间:2014-11-06 21:26:48      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   ar   div   log   amp   ef   as   

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2001

注意输入时候的空格就可以了

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

	}
}

  

杭电2001 计算两点之间的距离

标签:blog   http   io   ar   div   log   amp   ef   as   

原文地址:http://www.cnblogs.com/wuyuewoniu/p/4079734.html

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