Incrementation de ‘BigInteger’

Author:

Calculer,la,puissance,d'un,nombre,de,type,'BigInteger'
{filelink=20038}

using System;
using System.Numerics;

public class ExBigInteger
{
   public static void Main()
   {
        BigInteger nombre = 9999999999;
        Console.WriteLine(++nombre);
   }
}

Leave a Reply

Your email address will not be published. Required fields are marked *