

InterviewSolution
Saved Bookmarks
1. |
Write a programme to find area and perimeter of triangle |
Answer» b=int(input("enter base of triangle:"))h=int(input("enter height of triangle:"))A=0.5*b*hPrint("area of triangle="A)<br>for which triangle right angle triangle ,equaliteral triangle or other | |