java-计算三角形面积
摘要:```javaimportjava.util.Scanner;publicclassMain{publicstaticvoidmain(String[]args){Scannersc=newScann……
计算三角形面积(斯,好严格,除了输入的值,后面的值都得设双精度double,才能过)
摘要:解题思路:难点在于是否记得海伦公式吧,三角形面积公式:先求周长s=(a+b+c)/2;面积area=sqrt((s*(s-a)*(s-b)*(s-c)));注意事项:小心数据类型,这个卡了我短时间,有……
2774: 计算三角形面积
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;intmain(){ doublex1……
2774: 计算三角形面积
摘要:解题思路:海伦公式注意事项:参考代码:#include<iostream>#include<cstdio>#include<cmath>using ……
编写题解 2774: 计算三角形面积
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>intmain(){ floatx1,x2……
编写题解 2774: 计算三角形面积
摘要:解题思路:注意事项:参考代码:importmathx1,y1,x2,y2,x3,y3=map(float,input().split())a=math.sqrt(math.pow(x1-x2,2)+m……