题解 2774: 计算三角形面积

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

筛选

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

摘要:解题思路:考虑到可能存在有的三角形不规则,三角形的高不是那么好找,我们可以用海伦公式来求解注意事项:用double 类型的数据参考代码:import java.util.Scanner; pub……

题目 2774: 计算三角形面积

摘要:解题思路:两个公式 三角形面积s=(p*(p-a)*(p-b)*(p-c))开根号  其中a,b,c为三角形三条边,其中p=(a+b+c)/2注意事项:注意数据类型,还有输出的面积保留的小数位数参考代……

题目 2774: 计算三角形面积

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<math.h> using namespace std; int main() { double x1……

已知三点求面积

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

2774: 计算三角形面积

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    double x1,y1,x2,y2,x3,y3,a……

2774: 计算三角形面积

摘要:解题思路:注意事项:参考代码:import mathx1,y1,x2,y2,x3,y3 = map(float,input().strip().split())a = math.sqrt((x1 - ……

java--study||O.o

摘要:参考代码:import java.util.Scanner; public class Main {   public static void main(String[] args) {  ……

2774: 计算三角形面积

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    double x1,y1,x2,y2,x3,y3,a……