Support our Blind Hand Charity by donating at 9818291723. Your contribution has the potential to bring about significant positive change for humanity.

Search This Blog

MY PROGRAMMES

Friday, April 14, 2023

FINDING HORIZONTAL RANGE

import math as m
v=float(input("Enter the initial velocity in m/s = "))
print("Enter the value of Θ in sinΘ")
s=float(input(""))
print("Enter the value of Θ in cosΘ")
c=float(input(""))
r=(v**2*(m.sin(s))*(m.cos(c)))/9.814
print("The Horizontal range = ",r)