刚学函数定义,求两点距离,看看怎么改
刚学函数定义,求两点距离,看看怎么改#include#include double sqrt(double y2,double y1,double x2,double x1){return sqrt(pow((y2 - y1),2) + pow((x2 - x1),2));}void main(){double length,y2,y1,x2,x1; printf("This program is calculate the two porint length\nPlease input :x1 y1 x2 y2 \n");scanf("%lf %lf %lf %lf",&x1,&y1,&x2,&y2);length=sqrt(y2,y1,x2,x1);printf("length:%lf\n",length);}老师说要,一楼的方法是Function Prototypes吗,还有Function Prototypes谁能解释一下。
最佳回答
sqrt()函数在math。h头文件里已经定义过了 不用再重新定义一遍了#include#include void main(){double length,y2,y1,x2,x1; printf("This program is calculate the two porint length\nPlease input :x1 y1 x2 y2 \n");scanf("%lf %lf %lf %lf",&x1,&y1,&x2,&y2);length=sqrt(pow((y2 - y1),2) + pow((x2 - x1),2));printf("length:%lf\n",length);}
最新回答共有2条回答
-
2026-03-30 15:43:55勤奋的小蘑菇
回复sqrt()函数在math。h头文件里已经定义过了 不用再重新定义一遍了#include#include void main(){double length,y2,y1,x2,x1; printf("This program is calculate the two porint length\nPlease input :x1 y1 x2 y2 \n");scanf("%lf %lf %lf %lf",&x1,&y1,&x2,&y2);length=sqrt(pow((y2 - y1),2) + pow((x2 - x1),2));printf("length:%lf\n",length);}
热门文章
- 康达学院专转本五年制
- 高考一个考场分ab卷吗
- not only but also用法
- 某物体做自由落体运动,从释放开始计时,则物体在前2s内的平均速度为______m/s,物体下落2m时的速度大小为______m/s.
- 三角函数公式大全表格
- 地理中考必背知识点2022
- 2013-2014学年小学六年级科学上学期期末考试试卷及答案
- 人教版2014-2015学年小学五年级英语第二学期期中教学质量检测试卷及答案
- 【Linux驱动开发】设备树详解(二)设备树语法详解
- 别跟客户扯细节
- 在别的城市买房子能落户吗
- 卖房前要把装修贷还完吗
- 高中政治教学提高教学效果的方法探究
- “互联网+”背景下的初中英语课堂教学改革与创新策略研究
- 2022年终止合同范本
- 租房合同范本范文
- 如何挑选土豆
- 如何挑选土鸡
