-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lab4_4.cpp
62 lines (54 loc) · 1.29 KB
/
Lab4_4.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// Lab4_4.cpp : Этот файл содержит функцию "main". Здесь начинается и заканчивается выполнение программы.
//
#include <stdio.h>
#include <cmath>
#include <math.h>
#include <iostream>
using namespace std;
double find_exp(double x);
int factorial(const int n);
double get_elem();
int main()
{
setlocale(LC_ALL, "Russian");
double x = get_elem();
printf("x = %lf \n", x);
printf("exp = %lf", find_exp(x));
return 0;
}
double get_elem()
{
double elem;
while (true)
{
cout << "Enter the element of array: ";
cin >> elem;
if (cin.fail())
{
cin.clear();
cin.ignore(numeric_limits<streamsize>::max(), '\n');
cout << "It's not correct, please write again" << endl;
}
else
{
return elem;
}
}
}
double find_exp(double x)
{
const int n = 2;
double sum = 0.0;
for (int i = 0; i <= n; i++)
{
sum += (pow(x,i)) / factorial(i);
}
return sum;
}
int factorial(const int n)
{
int calc_factorial = 1;
for (int i = 1; i <= n; i++)
calc_factorial = calc_factorial * i;
return calc_factorial;
}