Computer Science, asked by aartisaw0, 1 month ago

write a program in bluej to find the area of right angled triangle​

Answers

Answered by padhup
1

Answer:

Explanation:

A Triangle having one interior angle of 90 degrees as right angle is called as Right Angle Triangle which has a Hypotenuse(the side opposite to its right angle ), base and height.

b = 5  

h = 8  

area = ( b * h) / 2  

print("Area of Right Angle Triangle is :");  

print(area);  

HOPE IT'S HELPFUL!

Similar questions