fork(3) download
  1. public class FloatingPoints
  2. {
  3. public static void Main()
  4. {
  5. double a = 0.1d;
  6. double b = 0.2d;
  7.  
  8. System.Console.WriteLine(a + b == 0.3);
  9. System.Console.WriteLine((a + b).ToString("G"));
  10. System.Console.WriteLine((a + b).ToString("R"));
  11. }
  12. }
Success #stdin #stdout 0.06s 23992KB
stdin
Standard input is empty
stdout
False
0.3
0.30000000000000004