- 博客(4)
- 收藏
- 关注
原创 结构体实现两点之间距离和中点的计算
#include<stdio.h>#include<math.h>struct point//定义结构体{ double x; double y;};double dis(struct point a,struct point b)//两点之间的距离{ double c; c=pow(a.x-b.x,2)+pow(a.y-b.y,2); return sqrt(c); } struct point mid_point(struct point a,struc
2021-01-07 11:47:16
1330
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人