This commit is contained in:
Bensouda Idriss 2023-03-22 10:09:13 +01:00
부모 1bac558e24
커밋 c73b5118a4
2개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제

파일 보기

@ -228,7 +228,7 @@ public class Path {
*
*/
public double getTravelTime(double speed) {
return speed*3600/(getLength()*1000);
return speed/(getLength()*3.6);
}
/**