Advertisement
Abaduaber

DmiDru_2

Dec 15th, 2012
372
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.19 KB | None | 0 0
  1. Var
  2.     S: Real;
  3.     N: LongInt;
  4. Begin
  5.     For N:= 1 To 100 Do Begin
  6.         S:= S + 1 / ((N + N * N + N * N * N) * Sqrt(N));
  7.     End;
  8.     WriteLn('Сумма: ', S:6:6);
  9.     ReadLn;
  10. End.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement