Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <vector>
- #include <string>
- #include <math.h>
- using namespace std;
- // a
- // 5! = (((((5) x 4) x 3) x 2) x 1)
- int f(int x) {
- int a = 1;
- /*
- 1; - променливи, с които работим във цикъла
- 2; - условието, което трябва да е вярно за да продължи цикъла
- 3; - действие, което се извършва на края на всяка стъпка
- */
- // 1 2 3
- for (x; x > 1; x--) {
- a = a * x;
- }
- return a;
- }
- class Expr {
- public:
- int x;
- int n;
- double S1() {
- double result = 1;
- for (int i = 1; i <=n; i++) {
- result = result + (pow(x, i) / f(i));
- }
- return result;
- }
- double S2() {
- double result = 1;
- for (int i = 1; i <= n; i++) {
- if(i == 1) result = result - (pow(x, i * 2) / f(i * 2));
- else result = result + (pow(x, i * 2) / f(i * 2));
- }
- return result;
- }
- };
- int main() {
- cout << pow(5, 4) << endl;
- cout << f(5);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement