You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pascal-coding/test/producttable.pas

17 lines
266 B
Plaintext

program producttable;
var
table: array [0..20, 0..20] of integer;
i, j: integer;
begin
for i := 0 to 20 do
begin
for j := 0 to 20 do
begin
table[i, j] := i*j;
Write(table[i, j] : 3, ' ');
end;
Writeln;
end;
end.