trip planner | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
+ 1

trip planner

Hi people, i cannot pass this exercise, can you please help to continue with javascript? You need to plan a road trip. You are traveling at an average speed of 40 miles an hour. Given a distance in miles as input (the code to take input is already present), output to the console the time it will take you to cover it in minutes. Sample Input: 150 Sample Output: 225 https://code.sololearn.com/ca22A476a8a1/#node

6th Apr 2021, 3:44 PM
Matias Nicolas Elia
Matias Nicolas Elia - avatar
4 Respuestas
+ 1
Don't assume distance as 150, that's just an example. Distance is given by input on line 3. Only numbers in your code should be 40 (miles) and 60 (minutes).
6th Apr 2021, 3:59 PM
Benjamin Jürgens
Benjamin Jürgens - avatar
+ 1
you should substitute the "distance" variable instead of the direct distance value. the test program will automatically substitute its own values
6th Apr 2021, 5:30 PM
Yaroslav Vernigora
Yaroslav Vernigora - avatar
0
I tried distance/speed 150 / 40 but says no outputs,
6th Apr 2021, 3:54 PM
Matias Nicolas Elia
Matias Nicolas Elia - avatar
0
test 1 has been solved. but now with test 2 if i change the output says that test 1 is wrong. how is it work? it is the first time i use this to practise.
6th Apr 2021, 4:15 PM
Matias Nicolas Elia
Matias Nicolas Elia - avatar