Advertisement
deced

Untitled

Sep 12th, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.96 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8.     setlocale(LC_ALL, "Russian");
  9.     int n = 0;
  10.     double output = 0;
  11.     bool isIncorrect = true;
  12.     string inputLine;
  13.     do {
  14.         cout << "Введите верхнюю границу суммирования\n";
  15.         try {
  16.             getline(cin, inputLine);
  17.             n = stoi(inputLine);
  18.             if (n > 0)
  19.             {
  20.                 isIncorrect = false;
  21.             }
  22.             else
  23.             {
  24.                 cerr << "Верхняя граница должна быть больше 0\n";
  25.             }
  26.  
  27.         }
  28.         catch (invalid_argument ex)
  29.         {
  30.             cerr << "Переменная a должна быть числом\n";
  31.         }
  32.         catch (out_of_range ex)
  33.         {
  34.             cerr << "Вы ввели слишком большое число\n";
  35.         }
  36.     } while (isIncorrect);
  37.     n++;
  38.     for (int i = 1; i < n; i++)
  39.     {
  40.         if (i % 2 == 1)
  41.         {
  42.             output += -1.0 / i;
  43.         }
  44.         else
  45.         {
  46.             output += 1.0 / i;
  47.         }
  48.     }
  49.     output /= 2;
  50.     cout << ("Сумма равна " + to_string(output));
  51. }
  52.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement