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(Math.Floor(5.5D)));
  8. Console.WriteLine("Rounding 6.5 to {0}", Convert.ToInt64(Math.Floor(6.5D)));
  9. }
  10. }
Success #stdin #stdout 0.03s 37040KB
stdin
Standard input is empty
stdout
Rounding 5.5 to 5
Rounding 6.5 to 6