C语言:用结构体表示点坐标,求两点之间的距离,下面程序为什么编译报错啊??谁帮忙看下,谢谢了!

#include<stdio.h>#include<stdlib.h>#include<math.h>structpoint{intx;inty;}doubledista... #include<stdio.h>
#include<stdlib.h>
#include<math.h>
struct point
{
int x;
int y;
}
double distance(point s,point t)
{
double dis;
dis=(s.x-t.x)*(s.x-t.x)+(s.y-t.y)*(s.y-t.y);
dis=sqrt(dis);
return dis;
}
int main()
{
point p1,p2;
scanf("%lf %lf %lf %lf",p1.x,p1.y,p2.x,p2.y);
printf("两点的距离为:%lf\n",distance(p1,p2));
system("pause");
return 0;
}
编译报错提示:distance函数中不能将double型变量转换成非标量类型,不知道什么意思?
展开
 我来答
dufenglei908
2012-12-04 · TA获得超过6372个赞
知道大有可为答主
回答量:1449
采纳率:60%
帮助的人:759万
展开全部
1. 结构体定义结尾加分号
2. 结构体类型的变量定义有问题,有的编译器像你这么写能通过,最好是写成struct point s这种形式,而不是直接写point。如果直接写point,那么你可以把定义改一下:
typedef struct point
{
int x;
int y;
}point;
3. x和y类型不对,按照你的输入语句来看,应该都是double类型
更多追问追答
追问
struct point
{
//中间省略
};
double distance(struct point s,struct point t)
{
//中间省略
}
int main()
{
struct point p1,p2;
scanf("%lf %lf %lf %lf",p1.x,p1.y,p2.x,p2.y);
printf("两点的距离为:%lf\n",distance(p1,p2));
system("pause");
return 0;
}
改成这样,便已是没问题了,但是运行的时候还有问题,什么情况啊?
追答
运行的时候什么问题?结果不对?你类型改了没,x和y都是double
再就是scanf("%lf %lf %lf %lf",p1.x,p1.y,p2.x,p2.y);这一句要改
scanf("%lf %lf %lf %lf", &p1.x, &p1.y, &p2.x, &p2.y);
nbjxm2008
2012-12-04 · TA获得超过272个赞
知道答主
回答量:221
采纳率:0%
帮助的人:147万
展开全部
结构体不带这么用的:
要么struct x{}cx; void distance(cx a, cx b)
要么struct x{} void distance((struct x) a, (struct x) b)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
yyyfff_1
2012-12-04
知道答主
回答量:18
采纳率:0%
帮助的人:7.1万
展开全部
结构体定义的后面必须要分号结束
struct point
{
int x;
int y;
};
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式