重複の可能性:
Java の多数
<= 500 桁の整数入力を取得して操作する必要があります。Javaでどのように行うことができますか?どんな助けでも大歓迎です。
BigIntegerクラスは、big int を開始するのに適した場所です。
ドキュメントをチェックして上限が何であるかを確認するBigInteger
必要がありますが、それはあなたのニーズに合っているはずです.
import java.math.BigInteger;
public class BigIntegerExample
{
public static void main(String[] args)
{
BigInteger bigInteger1 = new BigInteger ("123456789");
BigInteger bigInteger2 = new BigInteger ("112334");
BigInteger bigIntResult = bigInteger1.multiply(bigInteger2);
System.out.println("Result is ==> " + bigIntResult);
}
}
Biginteger クラスを使用して、整数で long 値を取ることができます。