定义一个结构体 Point
,其中包含两个 double
类型的成员 x
和 y
,用来表示一个二维坐标点。接着定义一个函数 dist
,用来计算两个点之间的欧几里德距离。
在函数中,通过调用 hypot
函数来计算两点之间的距离,C ++中的hypot()函数返回传递的参数平方和的平方根(根据勾股定理)。hypot
函数是用来计算两个数的平方和的平方根:
#include <stdio.h>
#include <math.h>typedef struct { double x, y; } Point;double dist(Point a, Point b) {return hypot(a.x - b.x, a.y - b.y);
}int main() {Point point1 = {1, 2};Point point2 = {4, 6};double distance = dist(point1, point2);printf("The distance between the two points is: %f\n", distance);return 0;
}