Write a function that takes an integer minutes and converts it to seconds.
Examples
convert(5) âžž 300
convert(3) âžž 180
convert(2) âžž 120
int convert(int min) { return min*60; }
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment