Files
matlab-learning/A02.m
2025-10-10 17:29:33 +08:00

6 lines
48 B
Matlab

y = 0;
n = 100;
for i=1:n
y=y+1/(i*i);
end
y