fork(1) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string format = "0." + new string('#', 324);
  8. var v = 0.90.ToString(format);
  9. Console.WriteLine(v);
  10.  
  11. var v2 = 0.00.ToString(format);
  12. Console.WriteLine(v2);
  13. }
  14. }
Success #stdin #stdout 0.04s 33872KB
stdin
Standard input is empty
stdout
0.9
0