Advertisement
Sinux1

PS6Q3

Mar 31st, 2016
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. // you can include <cmath> and use pow(v,2) below instead of (v*v)
  2.  
  3. double find_ke_value(double m, double v)
  4.  
  5. {
  6.     return (v*v) * m * 0.5;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement