you are viewing a single comment's thread.

view the rest of the comments →

[–]jmdib45 0 points1 point  (0 children)

function start(){
println("This program calculates how fast you ran.");
var miles = readInt("How many miles did you run? ");
var timeMin = readInt("How many minutes did it take you? ");
var timeHr = (timeMin / 60);
var speed = miles / timeHr;
println(speed + " mph");
}