// // Задано целое число x. // #include #include using namespace::std; int main() { cout << "Задание 3.\n"; // Ввод float x; cout << "Пожалуйста, введите число x: "; cin >> x; int step; cout << "До какой степени вести x: "; cin >> step; // Динамичный способ счета float answer = 0; int polarity = 1; for(int i = 3; i<=step; i+=2){ float nowX = x; for(int j=1; j