CBSE Class 11 Informatics Practices Question 87 of 102

Python Programming Fundamentals — Question 48

Back to all questions
48
Question

Question 35

Write a program to find the area of a triangle.

Solution
h = float(input("Enter height of the triangle: "))
b = float(input("Enter base of the triangle: "))
area = 0.5 * b * h
print("Area of triangle = ", area)
Output
Enter height of the triangle: 2.5
Enter base of the triangle: 5
Area of triangle =  6.25
Answer