Make a program that will display the entire multiplication table on the screen.

Program table;
var
i, j: integer;
begin
for i: = 1 to 10 do
begin
for j: = 1 to 10 do
writeln (j, ‘*’, i, ‘=’, i * j);
writeln;
end;
readln
end.

The program uses two loops with a parameter, one inside the other. the inner loop outputs all works to the same number, the outer one goes to the next group of works. The table is displayed in one column.



One of the components of a person's success in our time is receiving modern high-quality education, mastering the knowledge, skills and abilities necessary for life in society. A person today needs to study almost all his life, mastering everything new and new, acquiring the necessary professional qualities.