program SumCalculation;
varn, i: integer;s, result: real;
beginwriteln('Введите значение n:');readln(n);
s := 0;
for i := 1 to n dos := s + (i + 1) / (i * i + 1);
result := s;
writeln('Сумма: ', round(result * 100) / 100:0:2);end.
program SumCalculation;
var
n, i: integer;
s, result: real;
begin
writeln('Введите значение n:');
readln(n);
s := 0;
for i := 1 to n do
s := s + (i + 1) / (i * i + 1);
result := s;
writeln('Сумма: ', round(result * 100) / 100:0:2);
end.