题解 2773: 计算线段长度
摘要:C语言中
pow函数的声明:double pow(double x, double y)
pow(x,y):x的y次幂
```c
#include
#include
int ma……
题解 2773: 计算线段长度--C
摘要:解题思路:double注意事项:参考代码:#include<stdio.h>#include <math.h>int main(){ double x1, y1, x2, y2; doub……
输入判定有坑,需要判断4个数据是否在一行
摘要:解题思路:注意事项:参考代码:import mathnum=list(map(float,input().split()))if len(num)==4: print(f'{math.s……
题解 2773: 计算线段长度
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double xa = 0; double ya = 0; double xb ……
C语言:勉强可以说是二维数组解决问题了
摘要:解题思路:听说这题目可以用数组解决,所以我就寻思着用二维数组玩一下二维数组有两个维度,刚好这里两个坐标,一个坐标一个维度二维数组a[2][2] ; a[0]表示第一个坐标【a[……
1498154526578156485145475
摘要:解题思路:#include <bits/stdc++.h>using namespace std;int main(){ double xa,ya,xb,yb; cin>>xa>>ya>>……
题解 2773: 计算线段长度
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double xa,ya,xb,yb; cin……
2773: 计算线段长度(数组解法)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double a[3],b[3]; double sum=0,num……