Write a program in python to
display that sum of 3 angles of
triangle is equal to 180 degree
Answers
Answered by
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
0
Answer:
Equilateral triangle having three side therefor one side=60 total side is 180 degree
Similar questions
Hindi,
4 months ago
Accountancy,
4 months ago
English,
4 months ago
History,
10 months ago
Math,
10 months ago
Political Science,
1 year ago
Hindi,
1 year ago
World Languages,
1 year ago