Loading [MathJax]/extensions/tex2jax.js

Python Program to find Third Angle of Triangle if Two Angles Are Given

Python Program to find Third Angle of Triangle if Two Angles Are Given

Write Python Program to find Third Angle of Triangle if Two Angles Are Given

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# Python Program to find Third Angle of Triangle if Two Angles Are Given
# get the value of two angles of triangle
Angle1 = int(input("Enter Angle 1 :--> "))
Angle2 = int(input("Enter Angle 2 :--> "))
Angle3 = 180 - (Angle1 + Angle2) # sum of all the angles is 180
print("Third angle of the triangle :--> ", Angle3)
# Python Program to find Third Angle of Triangle if Two Angles Are Given # get the value of two angles of triangle Angle1 = int(input("Enter Angle 1 :--> ")) Angle2 = int(input("Enter Angle 2 :--> ")) Angle3 = 180 - (Angle1 + Angle2) # sum of all the angles is 180 print("Third angle of the triangle :--> ", Angle3)
# Python Program to find Third Angle of Triangle if Two Angles Are Given

# get the value of two angles of triangle
Angle1 = int(input("Enter Angle 1 :--> "))
Angle2 = int(input("Enter Angle 2 :--> "))

Angle3 = 180 - (Angle1 + Angle2)               # sum of all the angles is 180

print("Third angle of the triangle :--> ", Angle3)

Output:

Enter Angle 1 :--> 60
Enter Angle 2 :--> 70

Third angle of the triangle :-->  50