编写题解 2774: 计算三角形面积 摘要:解题思路:注意事项:参考代码:importmathx1,y1,x2,y2,x3,y3=map(float,input().split())a=math.sqrt(math.pow(x1-x2,2)+m…… 题解列表 2024年02月26日 0 点赞 0 评论 91 浏览 评分:0.0
ikun崩溃代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>intmain(){doublex1,y1,x2,y2,x3,y3;double…… 题解列表 2023年01月31日 0 点赞 0 评论 98 浏览 评分:0.0
题目 2774: 计算三角形面积 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<math.h>using namespace std;i…… 题解列表 2024年02月28日 0 点赞 0 评论 48 浏览 评分:0.0
2774: 计算三角形面积 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;intmain(){ doublex1…… 题解列表 2024年01月22日 0 点赞 0 评论 48 浏览 评分:0.0
叉积求面积 摘要:解题思路:注意事项:参考代码:defCross(x1,y1,x2,y2): returnx1*y2-y1*x2x1,y1,x2,y2,x3,y3=map(floa…… 题解列表 2023年02月13日 0 点赞 0 评论 132 浏览 评分:0.0
八行简便 编写题解 2774: 计算三角形面积 摘要:解题思路:海伦公式,p=0.5*(a+b+c)注意事项:importmath参考代码:importmathx1,y1,x2,y2,x3,y3=map(float,input().split())a=m…… 题解列表 2024年04月04日 0 点赞 0 评论 146 浏览 评分:0.0
海伦公式秒杀 摘要:解题思路:注意事项:参考代码:importmathnum=list(map(float,input().split()))a=math.sqrt((num[3]-num[1])**2+(num[2]-…… 题解列表 2024年11月30日 0 点赞 0 评论 45 浏览 评分:0.0
计算三角形面积 摘要:解题思路:注意事项:参考代码:publicclassMain{ publicstaticvoidmain(String[]…… 题解列表 2023年04月13日 0 点赞 0 评论 165 浏览 评分:0.0
2774: 计算三角形面积 摘要:解题思路:海伦公式注意事项:参考代码:#include<iostream>#include<cstdio>#include<cmath>using …… 题解列表 2023年01月02日 0 点赞 0 评论 100 浏览 评分:0.0
java-计算三角形面积 摘要:```javaimportjava.util.Scanner;publicclassMain{publicstaticvoidmain(String[]args){Scannersc=newScann…… 题解列表 2024年09月05日 0 点赞 0 评论 32 浏览 评分:0.0