Advertisement
Vernon_Roche

Задание3 Delphi

Sep 8th, 2023 (edited)
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.76 KB | None | 0 0
  1. Program Задание3;
  2.  
  3. Uses System.SysUtils;
  4.  
  5. Var
  6.     Eps, Sum, K: Real;
  7.     IsCorrect: Boolean;
  8.  
  9. Begin
  10.     IsCorrect := False;
  11.     K := 1;
  12.     Write('Введите EPS: ');
  13.     Repeat
  14.         Try
  15.             Readln(Eps);
  16.             If Not (Eps > 1) And (Eps > 0) Then
  17.                 IsCorrect := True
  18.             Else
  19.                 Writeln('Введите положительное число не больше 1');
  20.         Except
  21.             Writeln('Введите вещественное число!');
  22.         End;
  23.     Until IsCorrect;
  24.     While Not (K < Eps) do
  25.     Begin
  26.         Sum := Sum + K;
  27.         K := K / 2;
  28.     End;
  29.     Writeln('Сумма членов ряда: ', FormatFloat('0.##############', Sum));
  30.     Readln(K);
  31. End.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement