Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Need help with this problem, solution or hints muchappreciated. You would like t

ID: 3619223 • Letter: N

Question

Need help with this problem, solution or hints muchappreciated.

You would like to know how fast you can run in miles per hour. Yourtreadmill will tell you your speed in terms of a pace (minutes andseconds per mile, such as "5:30 mile") or in terms of kilometersper hour (kph).

Write an overloaded function called ConvertToMPH. The firstdefinition should take an input two integers that represent thepace in minutes and seconds per miles and return the speed in mphas a double. The second definition should take as input one doublethat represents the speed in kph and return the speed in mph as adouble, One mile is approximately 1.61 kilometers. Write a driverprogram to test your function.

Explanation / Answer

please rate - thanks if C++ is no good message me. I did a real dumb driver program, since I didn't want to spend timeif this was the wrong language got the formula for pace fromhttp://www.athleticgps.com/faq/q0133.shtml #include using namespace std; double ConvertToMPH(int,int); double ConvertToMPH(double); int main() {double mph; mph=ConvertToMPH(5,30); cout