tw19077.pp 126 B

12345678910111213
  1. uses
  2. math;
  3. var
  4. c : currency;
  5. begin
  6. c:=1.5625;
  7. c:=RoundTo(c,-1);
  8. if c<>1.6 then
  9. halt(1);
  10. writeln('ok');
  11. end.