write a program which will accept the three angles of a triangle and then print what kind of triangle it is
Answers
Answered by
2
bro you have not specified in which programming language we have to write the program....this is python program for your question.. if u want of another programming language, u can edit your question and I'll edit my answer to give your desired answer.....
print("enter angles of triangle")
m= int(input())
n= int( input())
o= int(input())
if m==n and m==o:
print(" equilateral triangle")
if m==n and m!= o:
print(" isosceles triangle")
if m!=n and m!=o:
print(" scalene triangle")
hope it helps
please mark as brainliest
Similar questions
Math,
2 months ago
History,
4 months ago
English,
4 months ago
Chemistry,
9 months ago
Social Sciences,
9 months ago