Java入门:基础算法之计算三角形面积

Posted 盆古开天地

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java入门:基础算法之计算三角形面积相关的知识,希望对你有一定的参考价值。

本部分介绍如何计算三角形面积。

/**
 * @author: 理工云课堂
 * @description: 程序计算三角形的面积.三角形的底和高由用户输入
 */
import java.util.Scanner;
class AreaTriangleDemo {
   public static void main(String args[]) {   
      Scanner scanner = new Scanner(System.in);

      System.out.println("Enter the width of the Triangle:");
      double base = scanner.nextDouble();

      System.out.println("Enter the height of the Triangle:");
      double height = scanner.nextDouble();

      //面积 = (width*height)/2
      double area = (base* height)/2;
      System.out.println("Area of Triangle is: " + area);      
   }
}

输出

Enter the width of the Triangle:
2
Enter the height of the Triangle:
2
Area of Triangle is: 2.0

 

以上是关于Java入门:基础算法之计算三角形面积的主要内容,如果未能解决你的问题,请参考以下文章

PCL 计算空间三角形的面积

C++入门-求解三角形面积学习

C语言 编写函数,输入三角形三边之长,求三角形面积。

经典封装之计算三角形的面积

java计算四边形中心点和两条线段交点算法

dfs与dp算法之关系与经典入门例题