fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. float f1 = 99999999f;
  8. float f2 = 100000000f;
  9. Console.WriteLine(f1 == f2);
  10. }
  11. }
Success #stdin #stdout 0.02s 14436KB
stdin
Standard input is empty
stdout
True