I am trying to work out pace by doing time / distance. So for example if I run for for 39 minutes and cover 5 miles it gives me
39 / 5 = 7.8
This is correct but I want to result to be in minutes and seconds rather than a decimal. So what I actually want back is 7.48. I could also take the 0.8 and do
(60 / 100) * 80
But surely there is a way to do it in one calculation?