大きな数、たとえば1000の階乗を数えようとしています!
static void Main(string[] args)
{
UInt64 fact = 1;
for (UInt64 i = 1000; i > 0; i--)
{
fact = fact * i;
}
Console.WriteLine(fact); //returns 0, due to overflow UInt64, max fact is 56!
Console.ReadKey();
}
だから私は、より多くの変数をクラスターに結合する方法があるかどうか尋ねます。そうすれば、「大きな」数を格納するために本当に大きな変数を作成できます。