ITP1_10_A: Distance


2点 P1(x1, y1), P2(x2, y2) の距離を求めるプログラムを作成せよ。


#include <stdio.h>
#include <math.h>

int main() {
double x1,y1,x2,y2;
scanf("%lf %lf %lf %lf",&x1,&y1,&x2,&y2);
printf("%lf\n",hypot(x1-x2,y1-y2));
}
最終更新:2016年03月22日 16:18