题解 2774: 计算三角形面积

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

筛选

三角形的面积

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){    double x1,y1,x2,y2,x3,y3,s,a,b,c,z;  ……

计算三角形面积

摘要:解题思路:海伦公式S=1/4√(a+b+c)(a+b-c)(a+c-b)(b+c-a)注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){   ……

编写题解 2774: 计算三角形面积

摘要:解题思路:注意事项: 定义成double类型是全对,定义成float类型是64分,所以要用double类型。参考代码:#include<stdio.h>#include<math.h>int main……

ikun崩溃代码

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

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

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

三角形面积

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){    float x1,x2,x3,y1,y2,y3,d1,d2,d3,s;……

计算三角形面积

摘要:![](/image_editor_upload/20230722/20230722061633_68262.png) ```c #include #include int main() {……

海伦公式计算三角形面积

摘要:解题思路:注意事项:计算值要设置为double参考代码:#include<stdio.h>#include<math.h>double distance(float x1, float y1, flo……