Advertisement
deced

Untitled

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