Paste #146912

   
pasted on 03.10.2020 21:14
  • Edit to this paste
  • Print
  • Raw
  • The following pastes replied to this paste:  # 163260 # 232952
  • Show paste tree
  • Compare with paste
    #  
  • Toggle line numbers
  • Syntax highlighting  
Text paste
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
var
i, j : integer;
sum : real;

begin
sum := 0;
for i:=1 to 100 do
    for j:=1 to 120 do
        sum := sum + 1 / (i + j * j);

writeln(sum);
end.
Add Comment
Author