mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 19:19:07 +01:00
15 lines
316 B
C#
15 lines
316 B
C#
|
using System;
|
||
|
|
||
|
public static class TimeFormat
|
||
|
{
|
||
|
public static string GetReadableTime(int seconds)
|
||
|
{
|
||
|
var hours = seconds / 3600;
|
||
|
seconds %= 3600;
|
||
|
var minutes = seconds / 60;
|
||
|
seconds %= 60;
|
||
|
|
||
|
return String.Format("{0:00}:{1:00}:{2:00}", hours, minutes, seconds);
|
||
|
}
|
||
|
}
|