Computer Science, asked by bbabuli2012, 5 months ago

formula for finding the distance when the time, initial velocity and Acceleration is given in java​

Answers

Answered by BrainlyProgrammer
2

Answer:

S=u*t+(1/2)*a*Math.pow(t, 2) ;

where s is distance

u is initial vel.

a is accel.

Answered by anindyaadhikari13
3

Answer:-

If the time, acceleration and initial velocity are given, then we can find the distance using this formula,

 \sf S = ut +  \frac{1}{2}  a{t}^{2}

In java, we can write like this,

S=u*t+0.5*a*t*t;

Similar questions