在等茉莉花


私信TA

用户名:uq_47648523142

访问量:5292

签 名:

等  级
排  名 1519
经  验 2812
参赛次数 1
文章发表 27
年  龄 0
在职情况 学生
学  校 bilibili
专  业 软件工程

  自我简介:

解题思路:

注意事项:

参考代码:

#include<stdio.h>

#include<math.h>


int main()

{

double Xa,Xb,Ya,Yb;

scanf("%lf %lf",&Xa,&Ya);

scanf("%lf %lf",&Xb,&Yb);

printf("%.3lf",sqrt(pow((Xa-Xb),2)+pow((Ya-Yb),2)));

 

return 0;

}


 

0.0分

1 人评分

  评论区

#include<stdio.h>

#include<math.h>

int main()

{
	float x1 , y1;
	
	float x2 , y2;
	
	float h;
	
	scanf("%f%f",&x1,&y1);
	
	scanf("%f%f",&x2,&y2);
	
	h = sqrt(pow(x2-x1,2)+pow(y2-y1,2));
	
	printf("%.3f",h);
	
	return 0;
	
}
2024-02-27 16:58:42
  • «
  • 1
  • »