fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. var fl = .000012;
  8. Console.WriteLine("{0}", fl);
  9. Console.WriteLine("{0:F10}", fl);
  10. Console.WriteLine("{0:F}", fl);
  11. Console.WriteLine("{0:0.################}", fl);
  12. }
  13. }
Success #stdin #stdout 0.04s 33920KB
stdin
Standard input is empty
stdout
1.2E-05
0.0000120000
0.00
0.000012