fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. // your code goes here
  8. string Check_time="10:05:06";
  9. int hr=Check_time.IndexOf(":"),min=Check_time.LastIndexOf(":");
  10. Console.WriteLine(hr);
  11. }
  12. }
Success #stdin #stdout 0.03s 25284KB
stdin
Standard input is empty
stdout
2