RosettaCodeData/Task/Loops-Break/Delphi/loops-break.pas

16 lines
178 B
ObjectPascal
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
program Project5;
{$APPTYPE CONSOLE}
var
num:Integer;
begin
Randomize;
while true do
begin
num:=Random(20);
Writeln(num);
if num=10 then break;
end;
end.