1# Convert Hours & Minutes Into Seconds | Scratch Coding Practices & challenging Tasks

Опубликовано: 30 Июль 2022
на канале: Block Programming
2,468
23

Convert Minutes into Seconds
Write a code that takes an integer minutes and converts it to seconds.

Examples
convert(5) ➞ 300
convert(3) ➞ 180
convert(2) ➞ 120

Convert Hours into Seconds
Write a Code that converts hours into seconds.

Examples
howManySeconds(2) ➞ 7200
howManySeconds(10) ➞ 36000
howManySeconds(24) ➞ 86400