Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ConsoleApplication25.cpp : Defines the entry point for the console application.
- //
- #include "stdafx.h"
- #include <iostream>
- #include <cstdlib>
- using namespace std;
- int silnia(int a)
- {
- int tab[100];
- int x = 2;
- int c = a;
- tab[0] = a;
- tab[1] = a*(a - 1);
- if (a == 0)
- {
- return 1;
- }
- if(x<c)
- {
- tab[x] = tab[x - 1] * tab[x - 2];
- x++;
- }
- cout << endl << tab[x] << "/t";
- return a*silnia(a - 1);
- }
- bool parzysta(int a)
- {
- if (a % 2 == 0)
- {
- cout << "liczba jest parzysta" << endl;
- return true;
- }
- else
- {
- cout << "liczba nieparzysta" << endl;
- return false;
- }
- }
- int main()
- {
- int a;
- cout << "podaj a mniejsze od 100: " << endl;
- cin >> a;
- if (a >= 100){
- cout << "podaj a mniejsze od 100!" << endl;
- cin >> a;
- }
- parzysta(a);
- cout << endl<< silnia(a) << endl;
- system("pause");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement