Q. Write a program to find a side of a right angled triangle who’s two sides and an angle is given.

 

Answer = 

 

 



side1 = int(input("Enter side one :"))
side2 = int(input("Enter side two :"))
angle = int(input("Enter the angle :")) #Angle is not require to solve this Question
print("Biggest side :-" , (side1**2 + side2**2 )**0.5 )



Post a Comment

You can help us by Clicking on ads. ^_^
Please do not send spam comment : )

Previous Post Next Post