Hello coders, today we are going to solve Find Angle MBC HackerRank Solution in Python.
Task
ABC is a right triangle, 90o at B.
Therefore, angle ABC = 90o.
Point M is the midpoint of hypotenuse AC.
You are given the lengths AB and BC.
Your task is to find angle MBC 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 angle 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°
Solution – Find Angle MBC in Python
# Enter your code here. Read input from STDIN. Print output to STDOUT import math ab=int(input()) bc=int(input()) ca=math.hypot(ab,bc) mc=ca/2 bca=math.asin(1*ab/ca) bm=math.sqrt((bc**2+mc**2)-(2*bc*mc*math.cos(bca))) mbc=math.asin(math.sin(bca)*mc/bm) print(int(round(math.degrees(mbc),0)),'\u00B0',sep='')
Disclaimer: The above Problem (Find Angle MBC) is generated by Hacker Rank but the Solution is Provided by CodingBroz. This tutorial is only for Educational and Learning Purpose.
import math
pi=22/7
AB=float(input())
BC=float(input())
if AB>0 and AB0 and BC<=100:
MBC=math.atan(AB/BC)*180/pi
print(int(round(MBC,0)),'\u00B0',sep='')
Can somebody explain the solution provided by the website?