编写题解 2774: 计算三角形面积 摘要:解题思路:注意事项:参考代码:import mathx1,y1,x2,y2,x3,y3=map(float,input().split())a=math.sqrt(math.pow(x1-x2,2)+…… 题解列表 2024年02月26日 0 点赞 0 评论 127 浏览 评分:0.0
2774: 计算三角形面积 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double x1,y1,x2,y2,x3,y3,a…… 题解列表 2024年01月22日 0 点赞 0 评论 64 浏览 评分:0.0
2774: 计算三角形面积 摘要:解题思路:注意事项:参考代码:import mathx1,y1,x2,y2,x3,y3 = map(float,input().strip().split())a = math.sqrt((x1 - …… 题解列表 2024年01月15日 0 点赞 0 评论 207 浏览 评分:5.3
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2024年01月05日 0 点赞 0 评论 154 浏览 评分:9.9
2774: 计算三角形面积 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double x1,y1,x2,y2,x3,y3,a…… 题解列表 2023年12月16日 0 点赞 0 评论 135 浏览 评分:9.9
计算三角形面积--java语言 摘要:解题思路:①根据题目提示,输入x1~y3在内的6个单精度浮点数②了解海伦公式的用法③先根据坐标计算出a,b,c的值,再计算p④最后根据公式计算面积S⑤输出带两位小数的面积注意事项:①导入Scanner…… 题解列表 2023年12月04日 0 点赞 0 评论 149 浏览 评分:9.9
题解 2774: 计算三角形面积(制作不易,给个好评) 摘要:解题思路:可以先做一下2773,海伦公式:sqrt(p*(p-a)*(p-b)*(p-c)),p=(a+b+c)/2。注意事项:要用双精度浮点,单精度试了就错。参考代码:#include <bits/…… 题解列表 2023年12月03日 0 点赞 0 评论 213 浏览 评分:9.9
2774: 计算三角形面积(利用海伦公式) 摘要:```cpp #include #include #include using namespace std; int main() { float x1, y1, x2, y…… 题解列表 2023年11月22日 0 点赞 0 评论 267 浏览 评分:6.0
计算三角形面积 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>double distance(float x1, float y1, float x2, float …… 题解列表 2023年11月13日 0 点赞 3 评论 547 浏览 评分:9.9
海伦公式计算三角形面积 摘要:解题思路:注意事项:计算值要设置为double参考代码:#include<stdio.h>#include<math.h>double distance(float x1, float y1, flo…… 题解列表 2023年09月18日 0 点赞 0 评论 725 浏览 评分:9.9