首页 > 其他 > 详细

(hdu 简单题 128道)hdu 2001 计算两点间的距离

时间:2015-03-22 15:04:10      阅读:262      评论:0      收藏:0      [点我收藏+]

题目:

计算两点间的距离

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 115566    Accepted Submission(s): 44177


Problem Description
输入两点坐标(X1,Y1),(X2,Y2),计算并输出两点间的距离。
 

Input
输入数据有多组,每组占一行,由4个实数组成,分别表示x1,y1,x2,y2,数据之间用空格隔开。
 

Output
对于每组输入数据,输出一行,结果保留两位小数。
 

Sample Input
0 0 0 1 0 1 1 0
 

Sample Output
1.00 1.41
 

Author
lcy
 

Source
 

Recommend
JGShining   |   We have carefully selected several similar problems for you:  2002 2000 2010 2009 2012 



题目分析:

                 简单题。



代码如下:

/*
 * g.cpp
 *
 *  Created on: 2015年3月20日
 *      Author: Administrator
 
 hdu 2001
 */


#include <iostream>
#include <cstdio>
#include <cmath>

struct PPoint{//结构体尽量不要定义成Point这种,容易和C/C++本身中的变量同名
	double x;
	double y;

	PPoint(double _x = 0,double _y = 0):x(_x),y(_y){

	}

	PPoint operator - (const PPoint& op2) const{
		return PPoint(x - op2.x,y - op2.y);
	}

	double operator^(const PPoint &op2)const{
		return x*op2.y - y*op2.x;
	}
};


inline double sqr(const double &x){
	return  x*x;
}

inline double dis2(const PPoint &p0,const PPoint &p1){
	return sqr(p0.x - p1.x) + sqr(p0.y - p1.y);
}

inline double dis(const PPoint& p0,const PPoint& p1){
	return sqrt(dis2(p0,p1));
}


int main(){
	PPoint p1,p2;
	while(scanf("%lf %lf %lf %lf",&p1.x,&p1.y,&p2.x,&p2.y)!=EOF){
		printf("%.2lf\n",dis(p1,p2));
	}

	return 0;
}




(hdu 简单题 128道)hdu 2001 计算两点间的距离

原文:http://blog.csdn.net/hjd_love_zzt/article/details/44537677

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!