How do to print two zero's 00 as an integer?

前端 未结 4 1438
萌比男神i
萌比男神i 2021-01-14 01:49

I\'m working on some app academy practice questions and I can\'t seem to print two 00\'s for my time conversion. Here\'s what I have so far:

def time_convers         


        
4条回答
  •  粉色の甜心
    2021-01-14 02:10

    replace last statement of time_conversion with return "%02d:%02d" % [ hours, minutes ]

    Check the document http://ruby-doc.org/core-2.1.5/String.html#method-i-25 for more details

提交回复
热议问题