Find Angle MBC

Sort by

recency

|

881 Discussions

|

  • + 0 comments
    import math
    AB = float(input())
    BC = float(input())
    t_rad = math.atan(AB/BC)
    t = round(math.degrees(t_rad))
    print(f"{t}\u00b0")
    
  • + 0 comments

    do i have to do anything about the sides gng

  • + 1 comment

    do i have to do anything about the sides gng

  • + 0 comments

    from math import atan, degrees

    AB = int(input()) BC = int(input())

    print(f"{round(degrees(atan(AB/BC)))}\u00b0")

  • + 0 comments
    import math
    
    AB = int(input())
    BC = int(input())
    
    print(f"{round(math.degrees(math.atan(AB/BC)))}\u00b0")