Computer Science, asked by Anonymous, 1 month ago

write a program in Java find the area of right angle triangle​

Answers

Answered by xitzwinterbearx
2

Explanation:

public class top.{ public static void main (String args[]){ float b, h, area;b = 5 ;h =8;area = ( b * h ) / 2;System.out.println("Area of Right Angle Triangle is :"+area);

Similar questions