Advertisement
deced

Untitled

Sep 11th, 2020
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.92 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.                 isIncorrect = false;
  18.             else
  19.                 cerr << "Верхняя граница должна быть больше 0\n";
  20.  
  21.         }
  22.         catch (invalid_argument ex)
  23.         {
  24.             cerr << "Переменная a должна быть числом\n";
  25.         }
  26.         catch (out_of_range ex)
  27.         {
  28.             cerr << "Вы ввели слишком большое число\n";
  29.         }
  30.     } while (isIncorrect);
  31.     for (int i = 1; i < n + 1; i++)
  32.         if (i % 2 == 1)
  33.             output = output - 1 / (2.0 * i);
  34.         else
  35.             output = output + 1 / (2.0 * i);
  36.     cout << ("Сумма равна " + to_string(output));
  37. }
  38.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement