Skip to content
Snippets Groups Projects
Commit 3ef9a623 authored by KTKadyshev's avatar KTKadyshev
Browse files

Upload New File

parent 935ef6e6
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