fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. Console.WriteLine("Rounding 5.5 to {0}", Convert.ToInt64(5.5D));
  8. Console.WriteLine("Rounding 6.5 to {0}", Convert.ToInt64(6.5D));
  9. }
  10. }
Success #stdin #stdout 0.03s 37880KB
stdin
Standard input is empty
stdout
Rounding 5.5 to 6
Rounding 6.5 to 6