3

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

class Triangle:

angleA = 0
angleB = 0
angleC = 0

triangle1 = Triangle()

triangle1.angleA = 100
triangle1.angleB = 45
triangle1.angleC = 180 - triangle1.angleA - triangle1.angleB

print("The third angle is: ",triangle1.angleC)

You might also like