RosettaCodeData/Task/Loops-Do-while/Delphi/loops-do-while.delphi
2023-07-01 13:44:08 -04:00

16 lines
153 B
Text

program Loop;
{$APPTYPE CONSOLE}
var
I: Integer;
begin
I:= 0;
repeat
Inc(I);
Write(I:2);
until I mod 6 = 0;
Writeln;
Readln;
end.