日時: 2007/12/03 00:19:34 名前: AAL #include <stdio.h> #include <math.h> typedef struct { double x; double y; } Point_t; double CalcDistance( Point_t p1, Point_t p2 ){ return sqrt( pow(p2.x - p1.x, 2) + pow(p2.y - p1.y, 2) ); } int main(){ Point_t p1, p2; puts("p1のX, Y を入力してください"); scanf("%lf %lf", &p1.x, &p1.y ); puts("p2のX, Y を入力してください"); scanf("%lf %lf", &p2.x,