Possible Duplicate:
Large Numbers in Java
I need to take and manipulate an integer input with <= 500 digits. How can it be done in java? Any help would be appreciated.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The BigInteger class is a good place to start for big ints.
I’ll have to check the documentation to see what the upper bound on
BigIntegeris, but it should suit your needs.