Specifications Assigned Lead Programmer World Track Field Championships 100 Meter Dash One Q43826967
SPECIFICATIONS: You have been assigned as the lead programmerfor the World Track and Field Championships! The 100-meter dash isone of the highlights of this competition and is considered by manyto demonstrate the world’s fastest human. Your job is to take thetop finish time (given in seconds with two digits of precision tothe right of the decimal point) for the 100 meter dash and do someconversions to find out how fast the person was traveling in: •meters per second • feet per second • kilometers per hour • milesper hour In addition, you must also determine how long it wouldtake the person to run one mile. And finally, you must determinehow long it would take the person to run 100 yards. The result ofeach conversion you perform should be displayed and clearlylabeled, as demonstrated in the sample “run” below (NOTE: theactual numeric results are not displayed that is for you to figureout):
EXAMPLE: Please enter the winning time of the race: 15.00 Theperson was traveling at a rate of: x.xx meters per second, y.yyfeet per second, z.zz kilometers per hour, y.yy miles per hour, Itwould take m minutes and n.nn seconds for the person to run onemile. It would take t.tt seconds for the person to run 100yards.
DETAILS: • I have provided the Lab2 folder, the package and theclass that contains main • You will write your code in main. I haveprovided a few variables that you must you and you can declarevariables if needed. • It is your job to figure out the conversionsnecessary to determine the necessary output based on the above. •It is also your job to format your output in the same style asshown (2 decimal places). You are only allowed to use eitherSystem.out.printf or the methods from importjava.text.DecimalFormat.
Expert Answer
Answer to SPECIFICATIONS: You have been assigned as the lead programmer for the World Track and Field Championships! The 100-meter…
OR