fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7.  
  8. TimeSpan t = TimeSpan.FromSeconds( 121 );
  9.  
  10. string answer = string.Format("{0:D2}h:{1:D2}m:{2:D2}s:{3:D3}ms",
  11. t.Hours,
  12. t.Minutes,
  13. t.Seconds,
  14. t.Milliseconds);
  15.  
  16. Console.Write(answer);
  17. }
  18. }
Success #stdin #stdout 0.01s 131648KB
stdin
Standard input is empty
stdout
00h:02m:01s:000ms