10! = 3,628,800
35 factorial = 1.0333148 × 10^40.... THAT IS A REALLY BIG NUMBER. Sterling came up with a good way to approximate it.
It is 4060.
40 Factorial = 815,915,283,247,897,734,345,611,269,596,115,894,272,000,000,000
10 factorial is equal to 10 x 9 x 8 x 7 x 6 x 5 x 4 x 3 x 2 x 1 = 3628800 seconds. One week is equal to 60 x 60 x 24 x 7 = 604800 seconds. Therefore, 10 factorial seconds is equal to 3628800/604800 = 6 weeks.
Factorial 10 to the power factorial 10 will have 7257600 zeros.
10! = 3,628,800
10! and 6! means factorial of 10, and factorial of 6, respectively. You can calculate that on most scientific calculators - or you can multiply all numbers from 1 to 6 for the factorial of 6, and all numbers from 1 to 10 for the factorial of 10.
An example in Java, to compute 10!: int factorial = 1; for(int i = 1; i < 11; i++) { factorial *= i; }
2.5
3,628,800
7257600
#include <iostream> using namespace std; int main() { int i, number=0, factorial=1; // User input must be an integer number between 1 and 10 while(number<1 number>10) { cout << "Enter integer number (1-10) = "; cin >> number; } // Calculate the factorial with a FOR loop for(i=1; i<=number; i++) { factorial = factorial*i; } // Output result cout << "Factorial = " << factorial << endl;
It is approx 9.4259*10^159
10! (read ten factorial)
34! = 2.952 X 10^38
35 factorial = 1.0333148 × 10^40.... THAT IS A REALLY BIG NUMBER. Sterling came up with a good way to approximate it.