题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2001
#include<stdio.h>
#include<math.h>
int main()
{
double x1, x2, y1, y2, dis;
while ( scanf("%lf%lf%lf%lf", &x1, &y1, &x2, &y2) != EOF )
{
dis = sqrt(( x2 - x1 ) * ( x2 - x1 ) + ( y2 - y1 ) * ( y2 - y1 ));
printf("%.2lf\n", dis);
}
return 0;
}
本文提供了一个简单的C语言程序,用于计算二维平面上任意两点之间的欧氏距离。通过输入两点坐标,程序利用勾股定理计算并输出精确到两位小数的距离。
198

被折叠的 条评论
为什么被折叠?



