blob: 4d791e91cce2fb5727e91d50ee5f2ca8740d1200 (
plain)
1
2
3
4
5
|
V1 = 100; // Initial velocity in m/s
g = 9.81; // Acceleration due to gravity in m/s2
z1 = 100; // Initial elevation in m
V = sqrt((2*g*z1)+(V1)^2); // Final velocity in m/s2
disp("m/s",V,"The velocity of the object just before ir hits the ground is")
|