I need help creating with the conversions. Here’s the question?
A function called eta( ) which takes a distance in miles and a speed in MPH and returns a string that displays the hours and minutes until arrival. So a function call to eta(80,55) should return the string "1 Hour 27 Minutes".
What does "not working" mean? Give us a clear and precise description of what your problem is, to make it easier for us to help you.
You're doing lots of integer division there, which means you're likely to get some unexpected results. I'd recomment using floats rather than ints for your numerical values.