Computer Science, asked by Happy8439, 1 year ago

Tony crosses a street that is x' m long in 'y' minutes. Write an algorithm to compute his speed in km per hour, given x and y.

Answers

Answered by Shree2610
5

Answer:

take input of x and y.

take a double vairable to store (x*60)/y  (convert minutes into hour)

print the variable

Explanation:

Similar questions