Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Missing Angles Of A Triangle

print ("Angles Of A Triangle")
A = float(input("Enter Angle A In Degrees:\n"))
B = float(input("Enter Angle B In Degrees:\n"))
C = round(180 - A - B ,1)
print ("Missing Angle Is",C,"Degrees")
if A==B and A==C and B==C:
    print ("This is an equilateral")

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.