Program records in Pascal language. Determine what will be displayed as a result of the program.

Program records in Pascal language. Determine what will be displayed as a result of the program. Algorithmic language: alg cel s, k start s: = 0 nc for k from 1 to 5 s: = s + 2 * k kc output s end s k k

Pascal:
var s, k: integer;
begin
s: = 0;
for k: = 1 to 5 do
s: = s + 2 * k
end;
writeln (s)
end.

s k k



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.