var i,n:integer;
tich:real;
begin
write('nhap n='); readln(n);
tich:=1;
for i:=1 to n do tich:=tich*(1+1/(i*i));
write('ket qua la:',tich);
readln
end.
Đúng 0
Bình luận (1)
s:=1;
for i:= 1 to n do
s:=s*(1+(1/sqr(n)));
write(s);
Đúng 0
Bình luận (0)