Find Angle MBC

  • + 2 comments
    import math
    AB = float(input())
    BC = float(input())
    rad = math.atan(AB/BC)
    deg = math.degrees(rad)
    print(int(round(deg)),chr(176),sep='')
    

    In Right-angled Triangle , Mid point in hypotenuse always equidistant from 3 sides meas here angle is tan-inv(ab/bc).

    • + 0 comments

      wow,so simplified

    • + 0 comments

      shouldn't it be divided by 2? it's looking for MBC not ABC