fork(4) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. float a = 7.52321311545f;
  8.  
  9. Console.WriteLine(a.ToString("N30"));
  10. Console.WriteLine((a / 2.0f).ToString("N30"));
  11. Console.WriteLine((a * 0.5f).ToString("N30"));
  12. }
  13. }
Success #stdin #stdout 0.01s 131520KB
stdin
Standard input is empty
stdout
7.523213000000000000000000000000
3.761606000000000000000000000000
3.761606000000000000000000000000