• + 0 comments

    C# don't forget to call using System.Numerics;

     public static void extraLongFactorials(int n)
        {
            BigInteger total =1;
            for(BigInteger  i = n; i > 0; i-- ){
                total *=i;
            }
            Console.WriteLine(total);
        }