Search
 
SCRIPT & CODE EXAMPLE
 

CPP

FACTORIAL IN C++

#include <iostream>  
using namespace std;  
int main()  
{  
   int i,fact=1,number;    
  cout<<"Enter any Number: ";    
 cin>>number;    
  for(i=1;i<=number;i++){    
      fact=fact*i;    
  }    
  cout<<"Factorial of " <<number<<" is: "<<fact<<endl;  
  return 0;  
}  
Comment

c++ factorial

#include <cmath>

int fact(int n){
    return std::tgamma(n + 1);  
}    
// for n = 5 -> 5 * 4 * 3 * 2 = 120 
//tgamma performas factorial with n - 1 -> hence we use n + 1
Comment

cpp factorial of a number.

/*#include<bits/stdc++.h>
using namespace std;
iterative solution:
int fact (int n, int k)
{
	if(n==0) return 1;
	return fact(n-1,k*n);
}
int main()
{
	int n,k=1;
	cin>>n;
	int ans=fact(n,k);
	cout<<ans<<endl;
}*/
//recursive solution.
#include<bits/stdc++.h>
using namespace std;
int fact(int n)
{
	if(n==0)return 1;
	return n*fact(n-1);
}
int main(){
	int n;
	cin>>n;
	cout<<fact(n)<<endl;
	
}
Comment

built in factorial function in c++

int factorial(int n)
{
  return (n == 1 || n == 0) ? 1 : factorial(n - 1) * n;
}
Comment

how to find factorial of number in c++

#include <iostream>
using namespace std;

int main() {
    int n;
    long factorial = 1.0;

    cout << "Enter number: ";
    cin >> n;

    if (n < 0)
        cout << "Error! Factorial of a negative number doesn't exist.";
    else {
        for(int i = 1; i <= n; ++i) {
            factorial *= i;
        }
        cout << "Factorial of " << n << " = " << factorial;    
    }

    return 0;
}
Comment

find factorial in c++ using class

#include <iostream>
using namespace std;

class Factorial
{
private:
    int num;
    int factorial = 1;

public:
    void calculateFactorial();
    void show();
};

void
Factorial::calculateFactorial()
{
    cout << "Enter a number : " << endl;
    cin >> num;

    if (num == 0 || num == 1)
    {
        factorial = 1;
    }
    else
    {
        while (num > 1)
        {
            factorial = factorial * num;
            num--;
        }
    }
}

void Factorial::show()
{
    cout << "Factorial : " << factorial << endl;
}

int main()
{
    Factorial factorial;
    factorial.calculateFactorial();
    factorial.show();
}
Comment

how to factorize a number in c++

// C++ program to print all prime factors
#include <bits/stdc++.h>
using namespace std;
 
// A function to print all prime
// factors of a given number n
void primeFactors(int n)
{
    // Print the number of 2s that divide n
    while (n % 2 == 0)
    {
        cout << 2 << " ";
        n = n/2;
    }
 
    // n must be odd at this point. So we can skip
    // one element (Note i = i +2)
    for (int i = 3; i <= sqrt(n); i = i + 2)
    {
        // While i divides n, print i and divide n
        while (n % i == 0)
        {
            cout << i << " ";
            n = n/i;
        }
    }
 
    // This condition is to handle the case when n
    // is a prime number greater than 2
    if (n > 2)
        cout << n << " ";
}
 
/* Driver code */
int main()
{
    int n = 315;
    primeFactors(n);
    return 0;
}
 
// This is code is contributed by rathbhupendra
Comment

PREVIOUS NEXT
Code Example
Cpp :: How to pass a multidimensional array to a function in C and C++ 
Cpp :: Split a number and store it in vector 
Cpp :: loops in c and c ++ 
Cpp :: C++ to specify size and value 
Cpp :: __builtin_popcount 
Cpp :: C++ vector at() method 
Cpp :: first and last digit of a number in c++ 
Cpp :: Maximum sum of non consecutive elements 
Cpp :: the difference between i++ and ++i 
Cpp :: how we can write code to remove a character in c++ 
Cpp :: Program to find GCD or HCF of two numbers c++ 
Cpp :: tr bash 
Cpp :: c++ last element of array 
Cpp :: Implicit conversion casting 
Cpp :: error in c++ 
Cpp :: reverse in vector c++ 
Cpp :: print all number between a and b in c++ 
Cpp :: C++ CHEAT SHEAT 
Cpp :: heapsort 
Cpp :: how to run cpp in visual studio 
Cpp :: no of balanced substrings 
Cpp :: how you can add intger value to string in c++ 
Cpp :: forkortelse for intet 
Cpp :: argsort c++ 
Cpp :: https://www.cplusplus.com/doc/tutorial/pointers/ 
Cpp :: ordine crescente di numeri indefiniti in c++ 
Cpp :: how to point to next array using pointer c++ 
Cpp :: c++ map change order 
Cpp :: heroatx77 
Cpp :: set(W) 
ADD CONTENT
Topic
Content
Source link
Name
1+2 =