Computer Science, asked by swetarout1702, 4 months ago

write a program which will accept the three angles of a triangle and then print what kind of triangle it is​

Answers

Answered by sameer7815
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