Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <string>
- using namespace std;
- int main()
- {
- setlocale(LC_ALL, "Russian");
- int n = 0;
- double output = 0;
- bool isIncorrect = true;
- string inputLine;
- do {
- cout << "Введите верхнюю границу суммирования\n";
- try {
- getline(cin, inputLine);
- n = stoi(inputLine);
- if (n > 0)
- {
- isIncorrect = false;
- }
- else
- {
- cerr << "Верхняя граница должна быть больше 0\n";
- }
- }
- catch (invalid_argument ex)
- {
- cerr << "Переменная a должна быть числом\n";
- }
- catch (out_of_range ex)
- {
- cerr << "Вы ввели слишком большое число\n";
- }
- } while (isIncorrect);
- n++;
- for (int i = 1; i < n; i++)
- {
- if (i % 2 == 1)
- {
- output += -1.0 / i;
- }
- else
- {
- output += 1.0 / i;
- }
- }
- output /= 2;
- cout << ("Сумма равна " + to_string(output));
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement