You are viewing a single comment's thread. Return to all 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); }
Seems like cookies are disabled on this browser, please enable them to open this website
Extra Long Factorials
You are viewing a single comment's thread. Return to all comments →
C# don't forget to call using System.Numerics;