10김승만

이건 제가 짠건데요. 한번 비교해 보시면 도움되지 않을까 해서요.

훈이형의 의견으로 메인은 지웠어요 ㅋㅋ

 

#include <iostream>
using namespace std;

double cMPH(int KPH){
 return KPH*1.609;
}
double cMPH(int m, int s){
 return 3600/(60*m+s);
}