mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-19 06:19:32 +02:00
13 lines
226 B
ObjectPascal
13 lines
226 B
ObjectPascal
|
|
var i : DWord;
|
|
c1, c2 : comp;
|
|
|
|
begin
|
|
c1 := 20000; c2 := 100;
|
|
i := 0;
|
|
repeat
|
|
inc(i);
|
|
c1 := (abs(3*c1)-c2) < c2; { notice this !!! :) :) }
|
|
until (i > 1000);
|
|
Writeln(c1);
|
|
end. |