0
How to multiply one number with another using JS code
3 Antworten
0
Thank you
0
How do solve this trip planner
function main() {
var distance = parseInt(readLine(), 10);
//your code goes here
var speed=40;
var distance=150;
var time=(distance/speed)*60;
console.log(time);
}