HDU 2001 - 두 점 사이 의 거 리 를 계산 합 니 다.

388 단어 ACMHDU2001
제목 링크:http://acm.hdu.edu.cn/showproblem.php?pid=2001
#include<stdio.h>
#include<math.h>


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

좋은 웹페이지 즐겨찾기