Q:

Java Program To Calculate Area Of Triangle

0

Java Program To Calculate Area Of Triangle by getting the input from the user

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

import java.util.Scanner;
public class demo1 
{
   public static void main(String args[]) 
    {         
      Scanner input= new Scanner(System.in);       
         System.out.println("Enter the width of the Triangle:");
         double b= input.nextDouble();
 
         System.out.println("Enter the height of the Triangle:");
          double h= input.nextDouble();
                 
      double area=(b*h)/2;
      System.out.println("Area of Triangle is: " + area);      
   }
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now