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