Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <windows.h>
- using namespace std;
- int main()
- {
- SetConsoleOutputCP(1251);
- int n{}, count{ 1 }, i{}, y{};
- double x{}, sum{};
- long double fact{ 1 };
- while (true) {
- cout << "Введіть будь-яке число: ";
- cin >> x;
- if (cin.fail()) {
- cin.clear();
- cin.ignore(32767, '\n');
- cout << "Число було введено неправильно. Спробуйте ще раз!" << endl;
- continue;
- }
- else {
- break;
- }
- }
- while (true) {
- cout << "Введіть кількість чисел у ряді: ";
- cin >> n;
- if (cin.fail()) {
- cin.clear();
- cin.ignore(32767, '\n');
- cout << "Кількість чисел було введено неправильно. Спробуйте ще раз!" << endl;
- continue;
- }
- else {
- break;
- }
- }
- for (i = 1; n >= count; i += 4) {
- for (y = 1; y <= i; y++) {
- fact *= y;
- }
- sum += pow(x, i) / fact;
- fact = 1;
- count++;
- }
- cout << "Сума чисел - " << sum;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement