fork(2) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. // your code goes here
  8.  
  9. float b = (10.0f/65535.0f);
  10.  
  11. decimal t = (decimal)(10.0f/65535.0f);
  12. decimal n = Math.Round(t, 11);
  13.  
  14. Console.WriteLine("d :" + t);
  15. Console.WriteLine("d :" + Math.Round(t, 11));
  16. Console.WriteLine("d :" + n);
  17.  
  18.  
  19. }
  20. }
Success #stdin #stdout 0s 131072KB
stdin
Standard input is empty
stdout
d :0.000152590218966964
d :0.00015259022
d :0.00015259022