Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
15
Task/Loops-Break/Delphi/loops-break.delphi
Normal file
15
Task/Loops-Break/Delphi/loops-break.delphi
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
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.
|
||||
Loading…
Add table
Add a link
Reference in a new issue