fork(2) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. Console.WriteLine(12345678.1234567D);
  8. Console.WriteLine(12345678.12345678D);
  9.  
  10. Console.WriteLine(1234567.12345678D);
  11. Console.WriteLine(1234567.123456789D);
  12. }
  13. }
Success #stdin #stdout 0.03s 37016KB
stdin
Standard input is empty
stdout
12345678.1234567
12345678.1234568
1234567.12345678
1234567.12345679