Computer Science, asked by dharyakumar19, 10 months ago

Write a program in python to
display that sum of 3 angles of
triangle is equal to 180 degree​

Answers

Answered by SmrutiMohanty
0

Answer:

Python Program to check Triangle is Valid or Not a = int(input('Please Enter the First Angle of a Triangle: ')) b = int(input('Please Enter the Second Angle of a Triangle: ')) c = int(input('Please Enter the Third Angle of a Triangle: ')) # checking Triangle is Valid or Not total = a + b + c if total == 180: print("\nThis is a Valid Triangle") else: print("\nThis is an Invalid Triangle")

Answered by yadavjiyut139
0

Answer:

Equilateral triangle having three side therefor one side=60 total side is 180 degree

Similar questions