When I try to find the value of a BigInteger data type for 223,000, I am not able to see the value.
However, for calculations up to 222,000, I could display the BigInteger value without any problems.
Is there any solution or reason for this?
|
When I try to find the value of a However, for calculations up to 222,000, I could display the Is there any solution or reason for this? |
|||||||||
|
|
I tried the following in order to make a
And the number displayed was a very large number spanning 6925 digits. (I won't paste it here as it will span over 100 lines.) This is with Java 6 SE version 1.6.0_12 in Windows XP. According the API Specification, |
||||
|
|
|
It works fine for me on GNU/Linux. What do you mean you can't "display" it? What's your code and what error/problem do you get? |
|||
|
|
|
this limit for BigInteger is around 2^16 billion, though it has been noted that some functions don't behave correctly after about 2^2 billion. My guess is that your console or IDE has problems displaying very long lines. |
|||||
|
|
Do you need the whole thing? There is also a BigInteger.modpow(power, modulus) method which raises the integer value to the specified power and returning result % modulus -- commonly used in cryptography. This is also MUCH faster when dealing with very large exponents. |
|||
|
|