C++ program for factorial using Multi-level inheritance
Let us see the C++ program for finding the factorial of a number using the Multi-level inheritance.
C++ program for factorial using Multi-level inheritance
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 |
#include<iostream> using namespace std; //main class class factorial { public: unsigned long long fact=1; void display(); }; //child of main class class input_factorial: public factorial { public: int num; int input(); }; //child of another child class class fact_function_factorial: public input_factorial { public: void fact_function(); }; int input_factorial::input() { cout
<<"Please enter a number: "; cin>>num; } void fact_function_factorial::fact_function() { for(int i=1;i<=num;i++) { fact=fact*i; } } void factorial::display() { cout<<"Factorial of entered number is: "<<fact; } int main() { fact_function_factorial object; object.input(); object.fact_function(); object.display(); } |
Output