题解 2774: 计算三角形面积

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

筛选

计算三角形面积

摘要:![](/image_editor_upload/20230722/20230722061633_68262.png)```c#include#includeintmain(){doublex1,x2……

三角形面积

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>intmain(){&nbsp;&nbsp;floatx1,x2……

计算三角形面积

摘要:解题思路:运用求两点间距离公式和海伦公式注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;intmain(){&nbsp;&am……

感谢支持(谢谢)

摘要:解题思路:#include<bits/stdc++.h>usingnamespacestd;intmain(){&nbsp;&nbsp;doublexa,ya,xb,yb,……

计算三角形面积

摘要:解题思路:注意事项:参考代码:publicclassMain{&nbsp;&nbsp;&nbsp;&nbsp;publicstaticvoidmain(String[]……

计算三角形面积,海伦公式

摘要:解题思路:海伦公式sprt(p(p-a)(p-b)(p-c)),p为三角形的半周长注意事项:涉及距离计算,最好用双精度变量进行存储参考代码:#include<stdio.h>#includ……

叉积求面积

摘要:解题思路:注意事项:参考代码:defCross(x1,y1,x2,y2):&nbsp;&nbsp;returnx1*y2-y1*x2x1,y1,x2,y2,x3,y3=map(floa……

ikun崩溃代码

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>intmain(){doublex1,y1,x2,y2,x3,y3;double……