c语言 平面n个点坐标,计算各点间距离之和(struct coordinative)

编程输入平面上n(3<n<=10)个点的坐标,计算各点的距离之和。坐标点的的类型定义和相应的数组定义为:structcpprdinative{floatx;floaty;... 编程 输入平面上n(3<n<=10)个点的坐标,计算各点的距离之和。
坐标点的的类型定义和相应的数组定义为:
struct cpprdinative{
float x;
float y;
}point[10];

输入输出:
n=10
63,22 56,25 50,30 42,37 53,45
60,55 70,55 76,49 80,40 72,28
Distance=1029.56
展开
文库地摊
2012-06-24 · TA获得超过1195个赞
知道小有建树答主
回答量:663
采纳率:100%
帮助的人:402万
展开全部
#include "stdio.h"
#include "math.h"
struct cpprdinative{
float x;
float y;
}point[10];
void main()
{
int n = 0;
printf("n=");scanf("%d", &n);
for(int i = 0;i < n; i ++)
{
scanf("%f,%f", &point[i].x, &point[i].y);
}
float Distance =0;
for(int i = 0; i < n; i ++)
{
for(int j = i+1; j < n;j ++)
{
Distance += sqrt((point[i].x-point[j].x)*(point[i].x-point[j].x)+ (point[i].y-point[j].y)*(point[i].y-point[j].y));
}
}
printf("Distance = %f", Distance);
}
// 输入
n=10
63,22
56,25
50,30
42,37
53,45
60,55
70,55
76,49
80,40
72,28
// 输出
Distance = 1029.568237
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
馨富白e
2012-06-15 · TA获得超过147个赞
知道答主
回答量:298
采纳率:0%
帮助的人:87.6万
展开全部
是两点间的距离还是啥
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式