求两点距离的C语言代码
时间: 2023-04-08 21:05:01 浏览: 266
以下是求两点距离的C语言代码:
#include <stdio.h>
#include <math.h>
int main()
{
float x1, y1, x2, y2, distance;
printf("请输入第一个点的坐标(x1, y1):");
scanf("%f %f", &x1, &y1);
printf("请输入第二个点的坐标(x2, y2):");
scanf("%f %f", &x2, &y2);
distance = sqrt(pow(x2 - x1, 2) + pow(y2 - y1, 2));
printf("两点之间的距离为:%.2f\n", distance);
return 0;
}
相关问题
求两点间的距离c语言
可以使用以下代码来计算两点间的距离(欧几里德距离):
```c
#include <stdio.h>
#include <math.h>
int main() {
double x1, y1, x2, y2, distance;
printf("请输入第一个点的坐标(x1, y1): ");
scanf("%lf %lf", &x1, &y1);
printf("请输入第二个点的坐标(x2, y2): ");
scanf("%lf %lf", &x2, &y2);
distance = sqrt(pow((x2 - x1), 2) + pow((y2 - y1), 2));
printf("两点间的距离为: %.2lf\n", distance);
return 0;
}
```
C语言 平面两点两点距离代码
以下是计算平面两点距离的 C 语言代码:
#include <stdio.h>
#include <math.h>
int main()
{
double x1, y1, x2, y2, distance;
printf("请输入第一个点的坐标(x1, y1): ");
scanf("%lf %lf", &x1, &y1);
printf("请输入第二个点的坐标(x2, y2): ");
scanf("%lf %lf", &x2, &y2);
distance = sqrt(pow(x2 - x1, 2) + pow(y2 - y1, 2));
printf("两点之间的距离为: %lf\n", distance);
return ;
}
希望能对您有所帮助。
阅读全文