Advertisement
Vladislav8653

laba_1_4 c++

Sep 29th, 2022 (edited)
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.40 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main() {
  4.     setlocale(LC_ALL, "Russian");
  5.     int n = 0;
  6.     int x = 0;
  7.     bool IsIncorrect;
  8.     const int min = 1;
  9.     cout << "Введите количество элементов в массиве: " << endl;
  10.     do {
  11.         cin >> n;
  12.         IsIncorrect = false;
  13.         if (cin.fail() && (x < min)) {
  14.             cout << "Введите целое положительное число!" << endl;
  15.             IsIncorrect = true;
  16.             cin.clear();
  17.             while (cin.get() != '\n');
  18.         }
  19.     }while (IsIncorrect);
  20.     cout << "Введите x: " << endl;
  21.     do {
  22.         cin >> x;
  23.         IsIncorrect = false;
  24.         if (cin.fail() && (x < min)) {
  25.             IsIncorrect = true;
  26.             cout << "Введите целое положительное число!" << endl;
  27.             cin.clear();
  28.             while (cin.get() != '\n');
  29.         }
  30.     }while (IsIncorrect);
  31.     int *arr;
  32.     arr = new int[n];
  33.     cout << "Введите поочерёдно элементы массива: " << endl;
  34.     for (int i = 0; i < n; i++) {
  35.         do {
  36.             cin >> arr[i];
  37.             IsIncorrect = false;
  38.             if (cin.fail() && (arr[i] < 1 )) {
  39.                 cout << "Введите целые положительные числа!" << endl;
  40.                 IsIncorrect = true;
  41.                 cin.clear();
  42.                 while (cin.get() != '\n');
  43.             }
  44.         } while (IsIncorrect);
  45.     }
  46.     int b = arr[n-1];
  47.     for (int i = n-2; i >= 0; i--) {
  48.         b = arr[i] + b * x;
  49.     }
  50.     cout << "Значение многочлена равно: " << b;
  51. }
  52.  
  53.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement