Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main() {
- setlocale(LC_ALL, "Russian");
- int n = 0;
- int x = 0;
- bool IsIncorrect;
- const int min = 1;
- cout << "Введите количество элементов в массиве: " << endl;
- do {
- cin >> n;
- IsIncorrect = false;
- if (cin.fail() && (x < min)) {
- cout << "Введите целое положительное число!" << endl;
- IsIncorrect = true;
- cin.clear();
- while (cin.get() != '\n');
- }
- }while (IsIncorrect);
- cout << "Введите x: " << endl;
- do {
- cin >> x;
- IsIncorrect = false;
- if (cin.fail() && (x < min)) {
- IsIncorrect = true;
- cout << "Введите целое положительное число!" << endl;
- cin.clear();
- while (cin.get() != '\n');
- }
- }while (IsIncorrect);
- int *arr;
- arr = new int[n];
- cout << "Введите поочерёдно элементы массива: " << endl;
- for (int i = 0; i < n; i++) {
- do {
- cin >> arr[i];
- IsIncorrect = false;
- if (cin.fail() && (arr[i] < 1 )) {
- cout << "Введите целые положительные числа!" << endl;
- IsIncorrect = true;
- cin.clear();
- while (cin.get() != '\n');
- }
- } while (IsIncorrect);
- }
- int b = arr[n-1];
- for (int i = n-2; i >= 0; i--) {
- b = arr[i] + b * x;
- }
- cout << "Значение многочлена равно: " << b;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement