Find Factorial of a number

Find Factorial of a number.pdf

   #include<iostream>

   using namespace std;

   int main()

   {

      int n;

      cin>>n;

      int f=1;

      for(int i=1;i<=n;i++)

      {

         f=f*i;

      }

      cout<<f;

   }

Complete and Continue