Another update from ingydotnet^djgoku
This commit is contained in:
parent
91df62d461
commit
948b86eafa
7604 changed files with 108452 additions and 22726 deletions
21
Task/Loops-Nested/Pascal/loops-nested.pascal
Normal file
21
Task/Loops-Nested/Pascal/loops-nested.pascal
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
program LoopNested;
|
||||
uses SysUtils;
|
||||
const Ni=10; Nj=20;
|
||||
var
|
||||
tab: array[1..Ni,1..Nj] of Integer;
|
||||
i, j: Integer;
|
||||
label loopend;
|
||||
begin
|
||||
for i := 1 to Ni do
|
||||
for j := 1 to Nj do
|
||||
tab[i,j]:=random(20)+1;
|
||||
for i := 1 to Ni do
|
||||
begin
|
||||
for j := 1 to Nj do
|
||||
begin
|
||||
WriteLn(tab[i,j]);
|
||||
if tab[i,j]=20 then goto loopend
|
||||
end
|
||||
end;
|
||||
loopend:
|
||||
end.
|
||||
Loading…
Add table
Add a link
Reference in a new issue