海伦公式计算三角形面积 摘要:解题思路:注意事项:计算值要设置为double参考代码:#include<stdio.h>#include<math.h>double distance(float x1, float y1, flo…… 题解列表 2023年09月18日 0 点赞 0 评论 724 浏览 评分:9.9
计算三角形面积 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>double distance(float x1, float y1, float x2, float …… 题解列表 2023年11月13日 0 点赞 3 评论 547 浏览 评分:9.9
计算三角形面积(超标准答案) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> double distance(float x1, float y1, float x2, fl…… 题解列表 2024年08月02日 1 点赞 0 评论 365 浏览 评分:9.9
2774: 计算三角形面积(把公式记错了) 摘要:```cpp #include #include int main() { double p; double S; double a,b,c; double x1,x2,x3,…… 题解列表 2022年12月30日 0 点赞 0 评论 433 浏览 评分:9.6
编写题解 2774: 计算三角形面积 摘要:解题思路:注意事项: 定义成double类型是全对,定义成float类型是64分,所以要用double类型。参考代码:#include<stdio.h>#include<math.h>int main…… 题解列表 2022年12月12日 0 点赞 0 评论 281 浏览 评分:9.5
计算三角形面积 摘要:![](/image_editor_upload/20230722/20230722061633_68262.png) ```c #include #include int main() {…… 题解列表 2023年07月22日 0 点赞 0 评论 304 浏览 评分:9.0
计算三角形面积 摘要:#include<stdio.h>#include<math.h> //主要是用pow函数double changdu(double x1,double x2,double y1,double y2)…… 题解列表 2024年08月31日 0 点赞 0 评论 99 浏览 评分:8.0
计算三角形面积 摘要:解题思路:海伦公式S=1/4√(a+b+c)(a+b-c)(a+c-b)(b+c-a)注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ …… 题解列表 2022年11月11日 0 点赞 0 评论 484 浏览 评分:8.0
已知三点求面积 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ float x1, y1, x2, y2, x3, y3; scanf("%…… 题解列表 2024年02月28日 0 点赞 0 评论 431 浏览 评分:6.0
计算三角形面积,海伦公式 摘要:解题思路:海伦公式sprt(p(p-a)(p-b)(p-c)),p为三角形的半周长注意事项:涉及距离计算,最好用双精度变量进行存储参考代码:#include <stdio.h>#include <ma…… 题解列表 2023年02月15日 0 点赞 0 评论 170 浏览 评分:6.0