fork download
  1. var a,b,c: real;
  2. begin
  3. a:=0.29;
  4. b:=0.20;
  5. c:=a-b;
  6. if c=0.09 then writeln('Ok') else writeln('Error');
  7. writeln(c);
  8. end.
Success #stdin #stdout 0.01s 252KB
stdin
Standard input is empty
stdout
Error
 8.999999999999997E-002