fork(1) download
  1. using System.IO;
  2. using System;
  3.  
  4. class Program
  5. {
  6. static double MyRound(double d)
  7. {
  8. return Math.Floor(d + 0.5);
  9. }
  10.  
  11. static void Main()
  12. {
  13.  
  14. Console.WriteLine(Double.MinValue == (Double.MinValue + 1.0));
  15. }
  16. }
  17.  
Success #stdin #stdout 0.02s 33832KB
stdin
Standard input is empty
stdout
True