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型变量转换成非标量类型,不知道什么意思? 展开
#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型变量转换成非标量类型,不知道什么意思? 展开
3个回答
展开全部
1. 结构体定义结尾加分号
2. 结构体类型的变量定义有问题,有的编译器像你这么写能通过,最好是写成struct point s这种形式,而不是直接写point。如果直接写point,那么你可以把定义改一下:
typedef struct point
{
int x;
int y;
}point;
3. x和y类型不对,按照你的输入语句来看,应该都是double类型
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);
展开全部
结构体不带这么用的:
要么struct x{}cx; void distance(cx a, cx b)
要么struct x{} void distance((struct x) a, (struct x) b)
要么struct x{}cx; void distance(cx a, cx b)
要么struct x{} void distance((struct x) a, (struct x) b)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
结构体定义的后面必须要分号结束
struct point
{
int x;
int y;
};
struct point
{
int x;
int y;
};
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询