Computer Science, asked by prathamnaidu7, 7 months ago

write a program Which evaluates the expression. E = ½mv2. It takes values of m and v from the user.​

Answers

Answered by lobhasimali09
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 Anonymous
1

Answer:

hi

its \:  \:  a \: python \: program

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")

hope \: it \: helps \: you...☺

Similar questions