2773计算线段长度 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double xa, ya, xb, yb; scanf("%lf %lf\n%…… 题解列表 2024年10月26日 0 点赞 0 评论 106 浏览 评分:9.9
函数调用求线段长度-C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> double func(double x1,double y1,double x2,double…… 题解列表 2022年12月20日 0 点赞 0 评论 1038 浏览 评分:9.9
调用Math.pow()幂函数平方 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main{ public static void main(String[] args)…… 题解列表 2024年03月15日 0 点赞 0 评论 156 浏览 评分:9.9
题解 2773: 计算线段长度 摘要:解题思路:注意事项:参考代码:#inalude <bitz/stdc+-.h>uerng namespace std;doqble xa,ya,xb,yb,c;int maie(){ cin>>…… 题解列表 2023年12月23日 0 点赞 0 评论 83 浏览 评分:9.9
计算线段长度(最标准解法) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double Xa,Ya,Xb,Yb; scanf("%lf %…… 题解列表 2024年08月02日 0 点赞 0 评论 281 浏览 评分:9.9
2773: 计算线段长度 摘要:```cpp #include #include #include using namespace std; int main() { double xa, xb, ya, …… 题解列表 2023年11月22日 0 点赞 0 评论 128 浏览 评分:9.9
计算线段长度C语言 摘要:解题思路:勾股定理注意事项:参考代码:#include<stdio.h>#include <math.h>int main(){ double xa,ya,xb,yb; scanf("%l…… 题解列表 2024年01月18日 0 点赞 0 评论 118 浏览 评分:9.9
pow函数算平方根 摘要:解题思路:利用pow函数来求开方,与sqrt函数求开方同理注意事项:1/2是整型,等于零,应该用1.0/2参考代码:#include<iostream>using namespace std;#inc…… 题解列表 2023年05月01日 0 点赞 0 评论 181 浏览 评分:9.9
2773: 计算线段长度 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double xa,ya,xb,yb,a,b; …… 题解列表 2023年12月02日 0 点赞 0 评论 94 浏览 评分:9.9
题解 2773: 计算线段长度 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double xa,ya,xb,yb; cin…… 题解列表 2023年12月09日 0 点赞 0 评论 237 浏览 评分:9.9