- 3

About below the description problem, how can I write the javascript code?

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 function main() { var distance = parseInt(readLine(), 10); //your code goes here }

23rd Apr 2022, 3:02 PM
Rayner Chung
Rayner Chung - avatar
1 Odpowiedź
0
Time = distance/speed Just apply this formula... convert result into minutes..
23rd Apr 2022, 3:34 PM
Jayakrishna 🇮🇳