You are viewing a single comment's thread. Return to all comments →
AB = int(input()) BC = int(input()) angle = math.degrees(math.atan2(AB,BC)) degree = int(round(angle)) print(str(degree)+ '\u00B0')
This code works but can anyone explain what atan2 is??
Seems like cookies are disabled on this browser, please enable them to open this website
Find Angle MBC
You are viewing a single comment's thread. Return to all comments →
This code works but can anyone explain what atan2 is??