Friday, October 7, 2022

cos(x)

#include <iostream>
#include <math.h>
using namespace std;
int main()
{
double x,s,a,b,c;
int k; k = -1;
cin >> x;
cout << x << " " << cos(x) <<" ";
s = 1; a = x*x; b = 1; c = x*x/2;
for (int i = 2; i < 1000; i+=2)
{
s = s + k* c;
c = c * a;
c = c / ((i + 1)*(i+2));
k = k * -1;
}
cout << s << "\n";
}

No comments:

Post a Comment

N-point Star in Microsoft Visual Studio Console App

#include <windows.h> #include <cmath> #include <iostream> LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam,...