Find number of Factorial Using class and object

Solution in c++:
///**********ALLAH IS ALMIGHTY************///
///AH Tonmoy
///Department of CSE,23rd batch
///Islamic University,Bangladesh
#include<bits/stdc++.h>
using namespace std;
class student
{
    public:
    int number,factorial=1;
    void getdata();
    void calculation();
    void putdata();
};
void student::getdata()
{
    cin>>number;
}
void student::calculation()
{
    for(int i=1; i<=number; i++)
    {
        factorial=factorial*i;
    }
}
void student::putdata()
{
    cout<<"Factorial of "<<number<<"! is "<<factorial<<endl;
}
int main()
{
    student x;
    x.getdata();
    x.calculation();
    x.putdata();
}

No comments

Most View Post

Recent post

Codeforces Round 925 (Div. 3) 1931D. Divisible Pairs Solution

    Problem Link  :   https://codeforces.com/contest/1931/problem/D S olution in C++: /// Author : AH_Tonmoy #include < bits / stdc ++. ...

Powered by Blogger.