Skip to content
Snippets Groups Projects
Commit 6e6cd76a authored by KTKadyshev's avatar KTKadyshev
Browse files

Delete series.cpp

parent 498a806b
No related branches found
No related tags found
No related merge requests found
#include <iostream>
#include <cmath>
#include <limits>
#include <iomanip>
using namespace std;
#include "functions.h"
int main()
{
cout << "\t25.02.2022 Kadyshev K \n\n"\
"\t (i!) (2i - 1)\n"\
"\t (-1) * x \n"\
"\tG(x, i) = --------------------\n"\
"\t i \n"\
"\t x + cos(ix) \n\n";
ldouble_t x = 16;
int N = 0;
cout << "\tx> ";
cin >> x;
cout << "\tN> ";
cin >> N;
cout << "\n\n\tF("<<x<<", "<<N<<") = " << F(x, N) << "\n";
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment