私は自分のBigIntegerクラスをArrayListを使って実装していますが、私の追加メソッドの書き方は不明です。 public BigInt plus(BigInt operand){
//deep copy?
ArrayList<Byte> a = this.digit;
ArrayList<Byte> b = operand.digit;
Arra
の作品は私にとって非常に奇妙だが、あなたは自分でこの短いコード試すことができます。 var num1 = BigInteger.Parse("1e+9999", NumberStyles.AllowExponent);
var num2 = BigInteger.Parse("1e+9998", NumberStyles.AllowExponent);
var div = num1/num2;