Find Angle MBC in python HackerRank Solution

Hello Programmers, In this post, you will know how to solve the Find Angle MBC in python HackerRank Solution. This problem is a part of the HackerRank Python Programming Series.

Ezoicreport this adFind Angle MBC in python HackerRank Solution
Find Angle MBC in python HackerRank Solutions

One more thing to add, don’t directly look for the solutions, first try to solve the problems of Hackerrank by yourself. If you find any difficulty after trying several times, then you can look for solutions.

Find Angle MBC in python HackerRank Solutions

Ezoicreport this adproblem

ABC is a right triangle, 90° at B.Therefore, ABC = 90°.
Point M is the midpoint of hypotenuse AC.
You are given the lengths AB and BC.
Your task is to find MBC (angle, as shown in the figure) in degrees.

Input Format :

The first line contains the length of side AB.
The second line contains the length of side BC.

Constraints :

  • 0 < AB <= 100
  • 0 < BC <= 100
  • Lengths AB and BC are natural numbers.

Output Format :

Output MBC in degrees.
Note: Round the angle to the nearest integer.

Examples :
If angle is 56.5000001°, then output 57°.
If angle is 56.5000000°, then output 57°.
If angle is 56.4999999°, then output 56°.

Sample Input :

10
10

Sample Output :

45°

Find Angle MBC in python HackerRank Solutions

# Find Angle MBC in python - Hacker Rank Solution
# Python 3
# Enter your code here. Read input from STDIN. Print output to STDOUT
# Find Angle MBC in python - Hacker Rank Solution START
import math
AB = int(input())
BC = int(input())
H = math.sqrt(AB**2 + BC**2)
H = H/2.0
adj = BC/2.0
Output = int(round(math.degrees(math.acos(adj/H))))
Output = str(Output)
print(Output+"°")
# Find Angle MBC in python - Hacker Rank Solution END

Disclaimer: The above Problem (Find Angle MBC in python) is generated by Hackerrank but the Solution is Provided by BrokenProgrammers. This tutorial is only for Educational and Learning purposes.

Next: Triangle Quest 2 in Python HackerRank Solution

Sharing Is Caring

Leave a Comment

Ezoicreport this ad