关键注意变量的数据类型 摘要:#include<stdio.h> #include<math.h> int main() { double x1,x2,y1,y2; while(~scanf("%lf %lf %lf…… 题解列表 2021年04月11日 0 点赞 0 评论 115 浏览 评分:0.0
题解 1172: 计算两点间的距离 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x1,y1,x2,y2,length; while(scanf…… 题解列表 2021年11月11日 0 点赞 0 评论 146 浏览 评分:0.0
【计算两点间的距离】 (C语言代码) 摘要:#include <stdio.h>#include <math.h>int main(){ double x1,y1,x2,y2,dx,dy; while(scanf("%lf %lf %lf %l…… 题解列表 2017年11月08日 0 点赞 0 评论 981 浏览 评分:0.0
编写题解 1172: 计算两点间的距离 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { double x1,x2,y1,y2,a,b; while(…… 题解列表 2021年08月03日 0 点赞 0 评论 236 浏览 评分:0.0
【计算两点间的距离】 (C语言代码)高中知识点 摘要:解题思路:对(x1-x2)*(x1-x2)+(y1-y2)*(y1-y2)开方注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ d…… 题解列表 2019年03月07日 0 点赞 0 评论 295 浏览 评分:0.0
计算两点间的距离-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; int main(){ double x1,y1,x2,y2; …… 题解列表 2020年03月26日 0 点赞 0 评论 549 浏览 评分:0.0
1172基础解法(Python) 摘要:参考代码:import sysfor line in sys.stdin : line = list(map(float, line.split())) print('{:.2f}…… 题解列表 2022年11月05日 0 点赞 0 评论 105 浏览 评分:0.0
计算两点间的距离-题解(C语言代码) 摘要:```c #include #include typedef struct Node { double x; double y; }nod; void main() …… 题解列表 2020年10月17日 0 点赞 0 评论 419 浏览 评分:0.0
【计算两点间的距离】 (C语言代码) 摘要:#include<stdio.h> #include<math.h> int main() { double x1,y1,x2,y2; while(~scanf("%lf%lf%lf%l…… 题解列表 2018年06月11日 0 点赞 0 评论 338 浏览 评分:0.0
【计算两点间的距离】 (Java代码) 摘要:解题思路:import java.util.Scanner; public class C1172 { public static void main(String[] args) { …… 题解列表 2018年03月23日 2 点赞 0 评论 910 浏览 评分:0.0