write a program Which evaluates the expression. E = ½mv2. It takes values of m and v from the user.
Answers
Answered by
3
Explanation:
in python
m = int ( input ("enter value for mass: " ) )
v = int ( input ("enter value for velocity : " ) )
E = 1/2*m*v*v
print( " E = ", E)
hope this helps.
Answered by
1
Answer:
Explanation
m=eval(input("enter the value of m"))
v=eval(input("enter the value of v"))
E=(1/2)*m*(v**2)
print(E,"is the answer")
Similar questions