fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. float a = 0.1f;
  8. float b = 0.0f;
  9.  
  10. for(int i=0; i<10; i++){
  11. b += 0.01f;
  12. }
  13.  
  14. Console.WriteLine("a="+a);
  15. Console.WriteLine("b="+b);
  16.  
  17. if(a == b){
  18. Console.WriteLine("equals");
  19. }else{
  20. Console.WriteLine("not");
  21. }
  22.  
  23. }
  24. }
Success #stdin #stdout 0.02s 16348KB
stdin
Standard input is empty
stdout
a=0.1
b=0.09999999
not