contestada

The total distance traveled from position zero by an object undergoing constant acceleration can be determined by:
d = v0t+1/2at^2

Where v0 is the initial​ velocity, t is​ time, and a is acceleration. Create a flowchart to calculate the total distance​ (in kilometers) traveled at time t in​ hours, assuming initial velocity is given in miles per hour and acceleration is given in meters per second squared.

Respuesta :

oyejam

Answer:

Pls check the attached image for the flowchart.

Explanation:

The Algorithm for the calculating the distance is written below.

Algorithm:

Step 1: Start

Step 2: Read interval as integer

Step 3: for counter: 1 to interval increment counter by 1 begin

Read time, velocity, acceleration

Distance += (velocity * time + (accelerations * pow(time, 2)) / 2);

end

Step 4: Print Distance

Step 5: Stop

Ver imagen oyejam