Heron公式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Heron公式相关的知识,希望对你有一定的参考价值。

Java Heron's formula
  1. import java.util.Scanner;
  2.  
  3. public class HeronsFormula {
  4. public static void main(String[] args){
  5. Scanner input = new Scanner(System.in);
  6. System.out.print("Input the three sides");
  7. double sidea = input.nextDouble();
  8. double sideb = input.nextDouble();
  9. double sidec = input.nextDouble();
  10. System.out.println("The lengths of the sides of your triangle are: " + ' ' + sidea + ' ' + sideb + ' ' + sidec);
  11.  
  12.  
  13. System.out.println("The area of your triangle using Heron's Formula is: " + getArea(sidea,sideb,sidec));
  14.  
  15. }
  16.  
  17. public static double getArea(double a, double b, double c) { //method calculates area
  18. double s = (a + b + c)/2.0; //s = perimeter/2
  19. System.out.println("s is: " + s);
  20. double x = ((s) * (s-a) * (s-b) * (s-c)); //herons formula
  21. double area = Math.sqrt(x); //math function to square the input from herons formula
  22. return area;
  23. }
  24. }

以上是关于Heron公式的主要内容,如果未能解决你的问题,请参考以下文章

Heron ——将原来的storm更新到heron中

Heron——基础环境及安装

Heron 单节点运行 —— 基本环境配置

Twitter的流处理器系统Heron——升级的storm,可以利用mesos来进行资源调度

Twitter发布新的大数据实时分析系统Heron

Heron and His Triangle HDU - 6222(pell 大数)