as of early 2018, usain bolt holds the world record in the men's 100-meter dash. it is 9.58 seconds. what was his average speed in km/h? assign the result to a variable called hundred. in matlab

main.m
% Define variables
distance = 100; % meters
time = 9.58; % seconds
hours = 1/3600; % conversion factor from seconds to hours

% Calculate average speed
hundred = (distance/time)/1000 / hours; % km/h

% Display result
disp(hundred)
231 chars
11 lines

Output:

main.m
37.5783
8 chars
2 lines

Therefore, Usain Bolt's average speed in the men's 100-meter dash was approximately 37.6 km/h.

gistlibby LogSnag