Write a Pascal program that prints your name a specified number of times. (loop operator with parameter)

var
name: string; // declare a variable in which we will store the name
n, i: integer; // declare variables number of repetitions and loop counter

begin
writeln (‘Enter your name’); // display a text string
readln (name); // read the name entered from the keyboard
writeln (‘Enter the number of repetitions’); // display a text string
readln (n); // read the number of repetitions of name typing entered from the keyboard
for i: = 1 to n do // the loop will be executed n times
begin
writeln (name); // display the name
end;
end.



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.