Apna Hindi Tech Website Computer science के Students और Technology के बारे में जानकारी रखने वाले लोगों के लिए बहुत लाभदायक Web site है।
हमारी Website Apna Hindi Tech पर Free में Python Programming language हिंदी में सिखाई जाती है और दुनिया में जो लेटेस्ट टेक्नोलॉजी(Technology) है उसके बारे में विस्तार से बताया जाता है।
दोस्तों हमने अपनी वेबसाइट Apna Hindi Tech पर Python Programming से रिलेटेड बहुत सारे Softwares बनाना भी सिखाया है वो भी अपनी भाषा हिंदी में।
Find Angle MBC Hackerrank Solution In Python
Find Angle MBC Hackerrank Solution
Hello Friends
आज हम आपको Hacker Rank पर Find Angle MBC का कंप्लीट सॉल्यूशन बताएंगे वह भी आसान भाषा में। तो दोस्तों चलिए जानते हैं सॉल्यूशन ।
Problem : Find Angle MBC
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°.
0° < θ < 90°
Sample Input
10
10
Sample Output
45°
Solution
import math
AB=int(input())
BC=int(input())
print(round(math.degrees(math.atan(AB/BC))),chr(176),sep='')
Python Tutorial
Other Articles
import math AB=int(input()) BC=int(input()) print(round(math.degrees(math.atan(AB/BC))),chr(176),sep='') |
DISCLAIMER
The above hole problem statement is given by hackerrank.com but the solution is generated by the Apna Hindi Tech authority if any of the query regarding this post or website fill the following contact form.
......Thank You......
The above hole problem statement is given by hackerrank.com but the solution is generated by the Apna Hindi Tech authority if any of the query regarding this post or website fill the following contact form.
......Thank You......
Post a Comment
Post a Comment