mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-23 20:49:43 +02:00
12 lines
149 B
ObjectPascal
12 lines
149 B
ObjectPascal
var
|
|
a : Array[1..100] of integer;
|
|
i,j : Integer;
|
|
|
|
begin
|
|
for I:=1 to 100 do
|
|
A[I]:=I;
|
|
for j:=1 to 100 do
|
|
writeln(A[j]);
|
|
end.
|
|
|
|
|