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
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