题解 2773: 计算线段长度

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

2773计算线段长度

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double xa, ya, xb, yb; scanf("%lf %lf\n%……

函数调用求线段长度-C语言

摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> double func(double x1,double y1,double x2,double……

调用Math.pow()幂函数平方

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main{    public static void main(String[] args)……

题解 2773: 计算线段长度

摘要:解题思路:注意事项:参考代码:#inalude <bitz/stdc+-.h>uerng namespace std;doqble xa,ya,xb,yb,c;int maie(){    cin>>……

2773: 计算线段长度

摘要:```cpp #include #include #include using namespace std; int main() { double xa, xb, ya, ……

计算线段长度C语言

摘要:解题思路:勾股定理注意事项:参考代码:#include<stdio.h>#include <math.h>int main(){    double xa,ya,xb,yb;    scanf("%l……

pow函数算平方根

摘要:解题思路:利用pow函数来求开方,与sqrt函数求开方同理注意事项:1/2是整型,等于零,应该用1.0/2参考代码:#include<iostream>using namespace std;#inc……

2773: 计算线段长度

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    double xa,ya,xb,yb,a,b;   ……

题解 2773: 计算线段长度

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    double xa,ya,xb,yb;    cin……