Write a Program to Calculate the Area of Triangle in Java
import java.util.*;
class Triangle
{
public static void main(String args[])
{
double ar,h,b;
Scanner sc=new Scanner(System.in);
System.out.println("Enter the height and base");
h=sc.nextDouble();
b=sc.nextDouble();
ar=(b*h)/2;
System.out.println("Area="+ar);
}
}
Input:
Enter the height and base
4.5
6.2
Output:
Area=13.950000000000001
class Triangle
{
public static void main(String args[])
{
double ar,h,b;
Scanner sc=new Scanner(System.in);
System.out.println("Enter the height and base");
h=sc.nextDouble();
b=sc.nextDouble();
ar=(b*h)/2;
System.out.println("Area="+ar);
}
}
Input:
Enter the height and base
4.5
6.2
Output:
Area=13.950000000000001
Comments
Post a Comment